10 lines
174 B
GraphQL
10 lines
174 B
GraphQL
query CanCreateProjectSnippet($fullPath: ID!) {
|
|
project(fullPath: $fullPath) {
|
|
__typename
|
|
id
|
|
userPermissions {
|
|
__typename
|
|
createSnippet
|
|
}
|
|
}
|
|
}
|