summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/project_work_items.query.graphql
blob: 3a23db3886a03bc740f26284b6706f1dc350ba2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
      }
    }
  }
}