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

design_list.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: 9bd70e7e88677fa3b911bda96f82b92e288157e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
fragment DesignListItem on Design {
  id
  event
  filename
  notesCount
  image
  imageV432x230
  currentUserTodos(state: pending) {
    nodes {
      id
    }
  }
}