7 lines
134 B
GraphQL
7 lines
134 B
GraphQL
|
query CanCreateProjectSnippet($fullPath: ID!) {
|
||
|
project(fullPath: $fullPath) {
|
||
|
userPermissions {
|
||
|
createSnippet
|
||
|
}
|
||
|
}
|
||
|
}
|