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

duplicate_imports.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: de3ac9fa833658d0aebb56397300efc44fc411f7 (plain)
1
2
3
4
5
6
7
8
9
10
# import "./author.fragment.graphql"
# import "./post.fragment.graphql"

query($title: String!) {
  blog(title: $title) {
    description
    mainAuthor { ...AuthorF }
    posts { ...PostF }
  }
}