authentication.graphql 381 B

1234567891011121314151617181920212223
  1. extend type Query {
  2. authentication: AuthenticationQuery
  3. }
  4. extend type Mutation {
  5. authentication: AuthenticationMutation
  6. }
  7. type AuthenticationQuery {
  8. providers: [AuthenticationProvider]
  9. }
  10. type AuthenticationMutation
  11. type AuthenticationProvider {
  12. isEnabled: Boolean!
  13. key: String!
  14. props: [String]
  15. title: String!
  16. useForm: Boolean!
  17. icon: String
  18. config: String
  19. }