
* feat: introduce authentication page * feat: update page width * fix(saml): cover non-existing role mapping on onboarding --------- Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const UPSERT_SAML_AUTH_PROVIDER = gql`
|
|
mutation UpsertSamlAuthProvider($input: UpsertSamlAuthProviderInput) {
|
|
upsertSamlAuthProvider(input: $input) {
|
|
id
|
|
}
|
|
}
|
|
`;
|