debian-mirror-gitlab/app/assets/javascripts/access_tokens/graphql/queries/get_projects.query.graphql

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

30 lines
487 B
GraphQL
Raw Normal View History

2022-06-21 17:19:12 +05:30
#import "~/graphql_shared/fragments/page_info.fragment.graphql"
2021-04-17 20:07:23 +05:30
2021-12-11 22:18:48 +05:30
query accessTokensGetProjects(
2021-04-17 20:07:23 +05:30
$search: String = ""
$after: String = ""
$first: Int = null
$ids: [ID!] = null
) {
projects(
search: $search
after: $after
first: $first
ids: $ids
membership: true
searchNamespaces: true
sort: "UPDATED_ASC"
) {
nodes {
id
name
nameWithNamespace
avatarUrl
}
pageInfo {
2022-04-04 11:22:00 +05:30
__typename
2021-04-17 20:07:23 +05:30
...PageInfo
}
}
}