debian-mirror-gitlab/fixtures/lib/gitlab/graphql/queries/connection.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
133 B
GraphQL
Raw Normal View History

2021-03-08 18:12:59 +05:30
query($slug: String!) {
post(slug: $slug) {
author {
posts @connection(key: "posts") {
title
}
}
}
}