2021-12-11 22:18:48 +05:30
|
|
|
query analyticsGetGroupProjects(
|
2021-09-30 23:02:18 +05:30
|
|
|
$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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|