Welcome to mirror list, hosted at ThFree Co, Russian Federation.

post.fragment.graphql « queries « graphql « gitlab « lib « fixtures - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0049964cfa5ad049730e92c8a7c5f77347f0f808 (plain)
1
2
3
4
5
6
7
8
# import "./author.fragment.graphql"

fragment PostF on Post {
  name
  title
  content
  author { ...AuthorF }
}