9 lines
167 B
GraphQL
9 lines
167 B
GraphQL
query CanCreateProjectSnippet($fullPath: ID!) {
|
|
project(fullPath: $fullPath) {
|
|
__typename
|
|
userPermissions {
|
|
__typename
|
|
createSnippet
|
|
}
|
|
}
|
|
}
|