9 lines
266 B
C#
9 lines
266 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 { }
|
|
} |