Files
xDataService/Interfaces/IXBaseGraphQLTypeHelper.cs
T
2024-01-25 04:41:17 +03:30

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);
}
}