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