summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/project_work_items.query.graphql
blob: fce10f6f2a6d9c7780164fe33ac04dde0d744482 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query projectWorkItems(
  $searchTerm: String
  $projectPath: ID!
  $types: [IssueType!]
  $in: [IssuableSearchableField!]
) {
  workspace: project(fullPath: $projectPath) {
    id
    workItems(search: $searchTerm, types: $types, in: $in) {
      nodes {
        id
        title
        state
        confidential
      }
    }
  }
}