28 lines
641 B
GraphQL
28 lines
641 B
GraphQL
#import "../fragments/user.fragment.graphql"
|
|
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"
|
|
|
|
query projectUsersSearch($search: String!, $fullPath: ID!, $after: String, $first: Int) {
|
|
workspace: project(fullPath: $fullPath) {
|
|
id
|
|
users: projectMembers(
|
|
search: $search
|
|
relations: [DIRECT, INHERITED, INVITED_GROUPS]
|
|
first: $first
|
|
after: $after
|
|
sort: USER_FULL_NAME_ASC
|
|
) {
|
|
pageInfo {
|
|
hasNextPage
|
|
endCursor
|
|
startCursor
|
|
}
|
|
nodes {
|
|
id
|
|
user {
|
|
...User
|
|
...UserAvailability
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|