Initial Commit ...
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using GraphQL.Types;
|
||||
using xModels.Dtos;
|
||||
|
||||
namespace xDataService.Models {
|
||||
public class XGraphQueryType : InputObjectGraphType<XQuery> {
|
||||
public XGraphQueryType () {
|
||||
//
|
||||
Name = "query";
|
||||
|
||||
//
|
||||
Field (x => x.Filter);
|
||||
Field (x => x.ContainsDetail);
|
||||
Field (x => x.SortBy);
|
||||
Field (x => x.IsAscending);
|
||||
Field (x => x.Page);
|
||||
Field (x => x.PageSize);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user