debian-mirror-gitlab/app/assets/javascripts/runner/graphql/show/runner_projects.query.graphql

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

31 lines
510 B
GraphQL
Raw Normal View History

2022-06-21 17:19:12 +05:30
#import "~/graphql_shared/fragments/page_info.fragment.graphql"
2022-04-04 11:22:00 +05:30
query getRunnerProjects(
$id: CiRunnerID!
$first: Int
$last: Int
$before: String
$after: String
) {
runner(id: $id) {
id
2022-08-27 11:52:29 +05:30
ownerProject {
id
}
2022-04-04 11:22:00 +05:30
projectCount
projects(first: $first, last: $last, before: $before, after: $after) {
nodes {
id
avatarUrl
2022-08-27 11:52:29 +05:30
description
2022-04-04 11:22:00 +05:30
name
nameWithNamespace
webUrl
}
pageInfo {
...PageInfo
}
}
}
}