auth-query-strategies.gql 259 B

123456789101112131415161718
  1. query {
  2. authentication {
  3. strategies(orderBy: "title ASC") {
  4. isEnabled
  5. key
  6. props
  7. title
  8. useForm
  9. config {
  10. key
  11. value
  12. }
  13. selfRegistration
  14. domainWhitelist
  15. autoEnrollGroups
  16. }
  17. }
  18. }