1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # ===============================================
- # AUTHENTICATION
- # ===============================================
- extend type Query {
- authentication: AuthenticationQuery
- }
- extend type Mutation {
- authentication: AuthenticationMutation
- }
- # -----------------------------------------------
- # QUERIES
- # -----------------------------------------------
- type AuthenticationQuery {
- providers(
- filter: String
- orderBy: String
- ): [AuthenticationProvider]
- }
- # -----------------------------------------------
- # MUTATIONS
- # -----------------------------------------------
- type AuthenticationMutation {
- login(
- username: String!
- password: String!
- provider: String!
- ): AuthenticationLoginResponse
- loginTFA(
- loginToken: String!
- securityCode: String!
- ): DefaultResponse
- updateProvider(
- provider: String!
- isEnabled: Boolean!
- config: [KeyValuePairInput]
- ): DefaultResponse
- }
- # -----------------------------------------------
- # TYPES
- # -----------------------------------------------
- type AuthenticationProvider {
- isEnabled: Boolean!
- key: String!
- props: [String]
- title: String!
- useForm: Boolean!
- icon: String
- config: [KeyValuePair]
- }
- type AuthenticationLoginResponse {
- operation: ResponseStatus
- tfaRequired: Boolean
- tfaLoginToken: String
- }
|