23 lines
632 B
C#
23 lines
632 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 XAiProjectGraphQuery : XBaseGraphQLQuery<XAiProject, Guid, XAiProjectGraphType, GuidGraphType>
|
|
{
|
|
public XAiProjectGraphQuery(
|
|
XDataServiceConfiguration configuration,
|
|
IXAiProjectRepository repository,
|
|
IXAiProjectGraphQLTypeHelper helper
|
|
) : base(
|
|
configuration,
|
|
repository,
|
|
helper
|
|
)
|
|
{ }
|
|
}
|
|
} |