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

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

query {
  post(slug: "validating-queries") {
    title
    content
    author { ...AuthorF }
  }
}