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

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

query($slug: String!) {
  post(slug: $slug) {
    author { ...AuthorF }
  }
}