1query CanCreateProjectSnippet($fullPath: ID!) {
2  project(fullPath: $fullPath) {
3    __typename
4    id
5    userPermissions {
6      __typename
7      createSnippet
8    }
9  }
10}
11