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

project_work_items.query.graphql « graphql « work_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d38d203b84e031984acfc4b077cce20ef308e3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query projectWorkItems($searchTerm: String, $projectPath: ID!, $types: [IssueType!]) {
  workspace: project(fullPath: $projectPath) {
    id
    workItems(search: $searchTerm, types: $types) {
      edges {
        node {
          id
          title
          state
        }
      }
    }
  }
}