13 lines
195 B
TypeScript
13 lines
195 B
TypeScript
import gql from 'graphql-tag'
|
|
|
|
export const getAllAvailableScopesQuery = gql`
|
|
query GetAllAvailableScopes {
|
|
serverInfo {
|
|
scopes {
|
|
name
|
|
description
|
|
}
|
|
}
|
|
}
|
|
`
|