17 lines
341 B
GraphQL
17 lines
341 B
GraphQL
#import "~/graphql_shared/fragments/user.fragment.graphql"
|
|
|
|
query ProjectBoardMembers($fullPath: ID!, $search: String) {
|
|
workspace: project(fullPath: $fullPath) {
|
|
__typename
|
|
id
|
|
assignees: projectMembers(search: $search) {
|
|
__typename
|
|
nodes {
|
|
id
|
|
user {
|
|
...User
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|