debian-mirror-gitlab/app/assets/javascripts/runner/graphql/show/runner_projects.query.graphql
2022-08-27 11:52:29 +05:30

30 lines
510 B
GraphQL

#import "~/graphql_shared/fragments/page_info.fragment.graphql"
query getRunnerProjects(
$id: CiRunnerID!
$first: Int
$last: Int
$before: String
$after: String
) {
runner(id: $id) {
id
ownerProject {
id
}
projectCount
projects(first: $first, last: $last, before: $before, after: $after) {
nodes {
id
avatarUrl
description
name
nameWithNamespace
webUrl
}
pageInfo {
...PageInfo
}
}
}
}