chore: Rename getSamlAuthProviders as listSamlAuthProviders query

This commit is contained in:
Faruk AYDIN
2023-08-07 16:22:00 +02:00
parent 40e10cc270
commit 4b706e004d
7 changed files with 23 additions and 24 deletions

View File

@@ -1,11 +0,0 @@
import { gql } from '@apollo/client';
export const GET_SAML_AUTH_PROVIDERS = gql`
query GetSamlAuthProviders {
getSamlAuthProviders {
id
name
issuer
}
}
`;

View File

@@ -0,0 +1,11 @@
import { gql } from '@apollo/client';
export const LIST_SAML_AUTH_PROVIDERS = gql`
query ListSamlAuthProviders {
listSamlAuthProviders {
id
name
issuer
}
}
`;