using System; using xAiModels.Constants; using xAiModels.Interfaces.Entities; using xAiModels.Models.Entities; using xDataService.GraphQL; namespace xAiModels.Providers.GraphQL { public class XAiConversationGraphQLTypeHelper : XBaseGraphQLTypeHelper, IXAiConversationGraphQLTypeHelper { public override string GetInQueryCollectionName() { return XAiModelsConstants.XAiConversationCollectionName; } public override string GetInQuerySingleName() { return XAiModelsConstants.XAiConversationSignleName; } } }