Welcome to mirror list, hosted at ThFree Co, Russian Federation.

search_project_members.query.graphql « queries « jira_import « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7666fa3bd9737eb06bc5ac15c97793fe7653c3af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query jiraSearchProjectMembers($fullPath: ID!, $search: String) {
  project(fullPath: $fullPath) {
    id
    projectMembers(search: $search) {
      nodes {
        id
        user {
          id
          name
          username
        }
      }
    }
  }
}