chore: Rename createSamlAuthProvider mutation as upsertSamlAuthProvider (#1200)

This commit is contained in:
Ömer Faruk Aydın
2023-08-08 22:56:23 +02:00
committed by GitHub
parent 6fb5482bba
commit ce8c9906cb
3 changed files with 6 additions and 6 deletions

View File

@@ -79,7 +79,7 @@ type Mutation {
updateStep(input: UpdateStepInput): Step
updateUser(input: UpdateUserInput): User
verifyConnection(input: VerifyConnectionInput): Connection
createSamlAuthProvider(input: CreateSamlAuthProviderInput): SamlAuthProvider
upsertSamlAuthProvider(input: UpsertSamlAuthProviderInput): SamlAuthProvider
}
"""
@@ -336,7 +336,7 @@ input VerifyConnectionInput {
id: String!
}
input CreateSamlAuthProviderInput {
input UpsertSamlAuthProviderInput {
name: String!
certificate: String!
signatureAlgorithm: String!