gitlab-org--gitlab-foss/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

query($slug: String!) {
post(slug: $slug) {
author {
posts @connection(key: "posts") {
title
}
}
}
}