summaryrefslogtreecommitdiff
path: root/spec/frontend/design_management_new/mock_data/designs.js
blob: 07f5c1b7457ad3a2017aa66ddc35664dce8275d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import design from './design';

export default {
  project: {
    issue: {
      designCollection: {
        designs: {
          edges: [
            {
              node: design,
            },
          ],
        },
      },
    },
  },
};