23 lines
379 B
GraphQL
23 lines
379 B
GraphQL
|
query getGroupProjects(
|
||
|
$groupFullPath: ID!
|
||
|
$search: String!
|
||
|
$first: Int!
|
||
|
$includeSubgroups: Boolean = false
|
||
|
) {
|
||
|
group(fullPath: $groupFullPath) {
|
||
|
projects(
|
||
|
search: $search
|
||
|
first: $first
|
||
|
includeSubgroups: $includeSubgroups
|
||
|
sort: SIMILARITY
|
||
|
) {
|
||
|
nodes {
|
||
|
id
|
||
|
name
|
||
|
avatarUrl
|
||
|
fullPath
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|