From e7c91d8f1b1c85ce2d4674dd5fbf6b29885ed1ac Mon Sep 17 00:00:00 2001 From: Wei Zhang Date: Tue, 7 Jan 2025 16:12:49 +0800 Subject: [PATCH] chore: update graphql for optional name_attr Signed-off-by: Wei Zhang --- ee/tabby-schema/graphql/schema.graphql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ee/tabby-schema/graphql/schema.graphql b/ee/tabby-schema/graphql/schema.graphql index 9c3c2c81c9fd..b25f4d292225 100644 --- a/ee/tabby-schema/graphql/schema.graphql +++ b/ee/tabby-schema/graphql/schema.graphql @@ -254,7 +254,7 @@ input UpdateLdapCredentialInput { encryption: LdapEncryptionKind! skipTlsVerify: Boolean! emailAttribute: String! - nameAttribute: String! + nameAttribute: String } input UpdateMessageInput { @@ -503,7 +503,7 @@ type LdapCredential { encryption: LdapEncryptionKind! skipTlsVerify: Boolean! emailAttribute: String! - nameAttribute: String! + nameAttribute: String createdAt: DateTime! updatedAt: DateTime! }