21 lines
521 B
C#
21 lines
521 B
C#
using xModels.Base;
|
|
|
|
namespace xDataService.Interfaces {
|
|
public interface IXBaseGraphQLTypeHelper<TEntity, TKey>
|
|
where TEntity : XBaseEntity<TKey> {
|
|
string GetInQuerySingleName ();
|
|
string GetInQueryCollectionName ();
|
|
|
|
string GetFindOneName ();
|
|
|
|
string GetFindManyName ();
|
|
|
|
string GetQueryName ();
|
|
|
|
string GetCountName ();
|
|
|
|
string GetExistsName ();
|
|
|
|
string GetGraphQLPath (string baseGraphPath = null);
|
|
}
|
|
} |