Files
speckle-server/packages/server/modules/auth/graph/schemas/auth.graphql
T
2022-03-30 12:54:24 +03:00

15 lines
230 B
GraphQL

extend type ServerInfo {
"""
The authentication strategies available on this server.
"""
authStrategies: [AuthStrategy]
}
type AuthStrategy {
id: String!
name: String!
icon: String!
url: String!
color: String
}