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

design_todo_item.fragment.graphql « fragments « graphql « design_management « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3fe20705ce2eeb8a43ffaaf361dea35bc3b041a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
fragment DesignTodoItem on Design {
  id
  image
  __typename
  currentUserTodos(state: pending) {
    nodes {
      id
      __typename
    }
  }
}