11 lines
262 B
C#
11 lines
262 B
C#
using GraphQL.Types;
|
|
using xModels.Base;
|
|
|
|
namespace xDataService.Interfaces
|
|
{
|
|
public interface IXBaseGraphQLQuery<TEntity, TKey, TGraph, TGraphKey>
|
|
where TEntity : XBaseEntity<TKey>
|
|
where TGraph : IGraphType
|
|
where TGraphKey : IGraphType
|
|
{ }
|
|
} |