13 lines
266 B
GraphQL
13 lines
266 B
GraphQL
#import "../fragments/user.fragment.graphql"
|
|
|
|
query usersSearch($search: String!, $fullPath: ID!) {
|
|
workspace: project(fullPath: $fullPath) {
|
|
users: projectMembers(search: $search) {
|
|
nodes {
|
|
user {
|
|
...User
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|