Fix GraphQL Implementation and also UI Playground and add supports for Oracle Provider using EF Core ...
This commit is contained in:
@@ -2,10 +2,11 @@ using xModels.Base;
|
||||
|
||||
namespace xDataService.Interfaces
|
||||
{
|
||||
public interface IXBaseGraphQLTypeHelper
|
||||
public interface IXBaseGraphQLTypeHelper<TEntity, TKey>
|
||||
where TEntity : XBaseEntity<TKey>
|
||||
{
|
||||
string GetInQuerySingleName();
|
||||
|
||||
|
||||
string GetInQueryCollectionName();
|
||||
|
||||
string GetFindOneName();
|
||||
@@ -20,8 +21,4 @@ namespace xDataService.Interfaces
|
||||
|
||||
string GetGraphQLPath(string baseGraphPath = null);
|
||||
}
|
||||
|
||||
public interface IXBaseGraphQLTypeHelper<TEntity, TKey> : IXBaseGraphQLTypeHelper
|
||||
where TEntity : XBaseEntity<TKey>
|
||||
{ }
|
||||
}
|
||||
Reference in New Issue
Block a user