Initial Commit ...
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user