17 lines
441 B
GraphQL
17 lines
441 B
GraphQL
#import "../fragments/user.fragment.graphql"
|
|
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"
|
|
|
|
query projectUsersSearch($search: String!, $fullPath: ID!) {
|
|
workspace: project(fullPath: $fullPath) {
|
|
id
|
|
users: projectMembers(search: $search, relations: [DIRECT, INHERITED, INVITED_GROUPS]) {
|
|
nodes {
|
|
id
|
|
user {
|
|
...User
|
|
...UserAvailability
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|