Commit 5c0b1f18 authored by Nick Thomas's avatar Nick Thomas

Merge branch 'design-management-test-fix' into 'master'

Fixed type mismatch in design management queries

Closes #11056

See merge request gitlab-org/gitlab-ee!13975
parents 3902a5d9 87f4222a
#import "./designListFragment.graphql"
query allDesigns($fullPath: ID!, $iid: ID!) {
query allDesigns($fullPath: ID!, $iid: String!) {
project(fullPath: $fullPath) {
issue(iid: $iid) {
designs {
......
query permissions($fullPath: ID!, $iid: ID!) {
query permissions($fullPath: ID!, $iid: String!) {
project(fullPath: $fullPath) {
issue(iid: $iid) {
userPermissions {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment