2021-02-22 17:27:13 +05:30
|
|
|
#import "../fragments/user.fragment.graphql"
|
2021-04-29 21:17:54 +05:30
|
|
|
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"
|
2021-02-22 17:27:13 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
query usersSearch($search: String!, $fullPath: ID!) {
|
|
|
|
workspace: project(fullPath: $fullPath) {
|
2021-04-29 21:17:54 +05:30
|
|
|
users: projectMembers(search: $search, relations: [DIRECT, INHERITED, INVITED_GROUPS]) {
|
2021-04-17 20:07:23 +05:30
|
|
|
nodes {
|
|
|
|
user {
|
|
|
|
...User
|
2021-04-29 21:17:54 +05:30
|
|
|
...UserAvailability
|
2021-04-17 20:07:23 +05:30
|
|
|
}
|
|
|
|
}
|
2021-01-29 00:20:46 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|