26 lines
760 B
C#
26 lines
760 B
C#
using xDataService.Configuration;
|
|
using xDataService.GraphQL;
|
|
using xStringService.Constants;
|
|
using xStringService.Interfaces.Entities;
|
|
using xStringService.Models.Entities;
|
|
|
|
namespace xStringService.Providers.GraphQL
|
|
{
|
|
public class XStringGraphQLTypeHelper : XBaseGraphQLTypeHelper<XString, int>, IXStringGraphQLTypeHelper
|
|
{
|
|
public XStringGraphQLTypeHelper(
|
|
XDataServiceConfiguration configuration
|
|
) : base(configuration)
|
|
{ }
|
|
|
|
public override string GetInQueryCollectionName()
|
|
{
|
|
return XStringServiceConstants.XStringCollectionName;
|
|
}
|
|
|
|
public override string GetInQuerySingleName()
|
|
{
|
|
return XStringServiceConstants.XStringSingleName;
|
|
}
|
|
}
|
|
} |