wikijs-fork/server/graph/schemas/authentication.graphql

69 lines
1.4 KiB
GraphQL
Raw Normal View History

# ===============================================
# AUTHENTICATION
# ===============================================
extend type Query {
authentication: AuthenticationQuery
}
extend type Mutation {
authentication: AuthenticationMutation
}
# -----------------------------------------------
# QUERIES
# -----------------------------------------------
type AuthenticationQuery {
2018-06-04 04:41:29 +00:00
strategies(
filter: String
orderBy: String
2018-06-04 04:41:29 +00:00
): [AuthenticationStrategy]
}
# -----------------------------------------------
# MUTATIONS
# -----------------------------------------------
type AuthenticationMutation {
login(
username: String!
password: String!
2018-06-17 15:12:11 +00:00
strategy: String!
): AuthenticationLoginResponse
loginTFA(
loginToken: String!
securityCode: String!
): DefaultResponse
2018-06-04 04:41:29 +00:00
updateStrategy(
2018-06-17 15:12:11 +00:00
strategy: String!
isEnabled: Boolean!
config: [KeyValuePairInput]
): DefaultResponse
}
# -----------------------------------------------
# TYPES
# -----------------------------------------------
2018-06-04 04:41:29 +00:00
type AuthenticationStrategy {
isEnabled: Boolean!
key: String!
props: [String]
title: String!
useForm: Boolean!
icon: String
config: [KeyValuePair]
selfRegistration: Boolean!
domainWhitelist: [String]!
autoEnrollGroups: [String]!
}
type AuthenticationLoginResponse {
responseResult: ResponseStatus
tfaRequired: Boolean
tfaLoginToken: String
}