22 lines
568 B
C#
22 lines
568 B
C#
using GraphQL.Types;
|
|
using xAiApi.Data.Interfaces;
|
|
using xAiApi.Data.Models.Entities;
|
|
using xDataService.Configuration;
|
|
using xDataService.GraphQL;
|
|
|
|
namespace xAiApi.Data.GraphQL
|
|
{
|
|
public class XTestGraphQuery : XBaseGraphQLQuery<XTest, int, XTestGraphType, IntGraphType>
|
|
{
|
|
public XTestGraphQuery(
|
|
XDataServiceConfiguration configuration,
|
|
IXTestRepository repository,
|
|
IXTestGraphQLTypeHelper helper
|
|
) : base(
|
|
configuration,
|
|
repository,
|
|
helper
|
|
)
|
|
{ }
|
|
}
|
|
} |