summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/graphql_shared/queries/users_search.query.graphql
blob: aaaaf3485ad5cf6db4c070a8639435fba07e51cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "../fragments/user.fragment.graphql"

query usersSearch($search: String!, $fullPath: ID!) {
  workspace: project(fullPath: $fullPath) {
    users: projectMembers(search: $search) {
      nodes {
        user {
          ...User
        }
      }
    }
  }
}