query permissions($fullPath: ID!, $iid: String!) {
  project(fullPath: $fullPath) {
    __typename
    id
    issue(iid: $iid) {
      __typename
      userPermissions {
        __typename
        createDesign
      }
    }
  }
}