23 lines
657 B
C#
23 lines
657 B
C#
using System;
|
|
using GraphQL.Types;
|
|
using xAiModels.Interfaces.Entities;
|
|
using xAiModels.Models.Entities;
|
|
using xDataService.Configuration;
|
|
using xDataService.GraphQL;
|
|
|
|
namespace xAiModels.Providers.GraphQL
|
|
{
|
|
public class XAiConversationGraphQuery : XBaseGraphQLQuery<XAiConversation, Guid, XAiConversationGraphType, GuidGraphType>
|
|
{
|
|
public XAiConversationGraphQuery(
|
|
XDataServiceConfiguration configuration,
|
|
IXAiConversationRepository repository,
|
|
IXAiConversationGraphQLTypeHelper helper
|
|
) : base(
|
|
configuration,
|
|
repository,
|
|
helper
|
|
)
|
|
{ }
|
|
}
|
|
} |