summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/project_work_item_types.query.graphql
blob: e7e3ce8c1ae08b6b55061a61ec9af015e577a64b (plain)
1
2
3
4
5
6
7
8
9
10
11
query projectWorkItemTypes($fullPath: ID!) {
  workspace: project(fullPath: $fullPath) {
    id
    workItemTypes {
      nodes {
        id
        name
      }
    }
  }
}