Files
speckle-server/modules/core/graph/schemas/server.graphql
T
2020-05-22 16:25:49 +01:00

32 lines
409 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!
}