Files
speckle-server/modules/core/graph/schemas/server.graphql
T
2020-05-21 10:24:02 +01:00

32 lines
407 B
GraphQL

extend type Query {
serverInfo: ServerInfo!
}
"""
Information about this server.
"""
type ServerInfo {
name: String!
description: String!
adminContact: String!
tos: String!
roles: [Role]
scopes: [Scope]
}
"""
Available roles.
"""
type Role {
name: String!
description: String!
resourceTarget: String!
}
"""
Available scopes.
"""
type Scope {
name: String!
description: String!
}