This commit is contained in:
2026-05-08 04:30:04 +03:30
parent afe5c74d09
commit 34afd95640
20 changed files with 1022 additions and 713 deletions
+18 -12
View File
@@ -1,21 +1,27 @@
using xModels.Base;
namespace xDataService.Interfaces {
public interface IXBaseGraphQLTypeHelper<TEntity, TKey>
where TEntity : XBaseEntity<TKey> {
string GetInQuerySingleName ();
string GetInQueryCollectionName ();
namespace xDataService.Interfaces
{
public interface IXBaseGraphQLTypeHelper
{
string GetInQuerySingleName();
string GetFindOneName ();
string GetInQueryCollectionName();
string GetFindManyName ();
string GetFindOneName();
string GetQueryName ();
string GetFindManyName();
string GetCountName ();
string GetQueryName();
string GetExistsName ();
string GetCountName();
string GetGraphQLPath (string baseGraphPath = null);
}
string GetExistsName();
string GetGraphQLPath(string baseGraphPath = null);
}
public interface IXBaseGraphQLTypeHelper<TEntity, TKey> : IXBaseGraphQLTypeHelper
where TEntity : XBaseEntity<TKey>
{ }
}