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