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

query.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: 451d3c25f25179c01b360a60de2d7b99f6007cee (plain)
1
2
3
4
5
6
7
# import "../../author.fragment.graphql"

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