summaryrefslogtreecommitdiff
path: root/fixtures/lib/gitlab/graphql/queries/connection.query.graphql
blob: eec3f9b867b6c18ac31ea999df7f05429b750f24 (plain)
1
2
3
4
5
6
7
8
9
query($slug: String!) {
  post(slug: $slug) {
    author {
      posts @connection(key: "posts") {
        title
      }
    }
  }
}