summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/project_milestones.query.graphql
blob: 1237640c46887a28c75b8bacc7e1754263535914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "./milestone.fragment.graphql"

query projectMilestones($fullPath: ID!, $title: String, $state: MilestoneStateEnum) {
  workspace: project(fullPath: $fullPath) {
    __typename
    attributes: milestones(searchTitle: $title, state: $state) {
      nodes {
        ...MilestoneFragment
        state
      }
    }
  }
}