using xModels.Base; namespace xDataService.Interfaces { public interface IXBaseGraphQLTypeHelper where TEntity : XBaseEntity { string GetInQuerySingleName (); string GetInQueryCollectionName (); string GetFindOneName (); string GetFindManyName (); string GetQueryName (); string GetCountName (); string GetExistsName (); string GetGraphQLPath (string baseGraphPath = null); } }