23 lines
628 B
C#
23 lines
628 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 XAiMessageGraphQuery : XBaseGraphQLQuery<XAiMessage, Guid, XAiMessageGraphType, GuidGraphType>
|
|
{
|
|
public XAiMessageGraphQuery(
|
|
XDataServiceConfiguration configuration,
|
|
IXAiMessageRepository repository,
|
|
IXAiMessageGraphQLTypeHelper helper
|
|
) : base(
|
|
configuration,
|
|
repository,
|
|
helper
|
|
)
|
|
{ }
|
|
}
|
|
} |