GraphQL.Extension.Types.Net
1.0.0
dotnet add package GraphQL.Extension.Types.Net --version 1.0.0
NuGet\Install-Package GraphQL.Extension.Types.Net -Version 1.0.0
<PackageReference Include="GraphQL.Extension.Types.Net" Version="1.0.0" />
paket add GraphQL.Extension.Types.Net --version 1.0.0
#r "nuget: GraphQL.Extension.Types.Net, 1.0.0"
// Install GraphQL.Extension.Types.Net as a Cake Addin #addin nuget:?package=GraphQL.Extension.Types.Net&version=1.0.0 // Install GraphQL.Extension.Types.Net as a Cake Tool #tool nuget:?package=GraphQL.Extension.Types.Net&version=1.0.0
/////////////////////////////////////// Pagination and Search Example //////////////////////////////////////////////////////////////////////
"Query" : query($pagination: PaginationInputType, $search: SearchInputType) {order(pagination: $pagination, search: $search) {id, orderDate quantity customerId}} ,"Variables" :{ "pagination" : {"take": 100, "skip": 100, "sorts": [{"fieldName": "created", "direction": "desc"}, {"fieldName": "quantity", "direction": "asc"}]}, "search" : {"filters": [{ "logic": "or", "operation": "eq", "value": 3245, "fieldName": "orderId" }, { "logic": "and", "operation": "inlist", "value": "32,66,87,199", "fieldName": "customerId" }, { "logic": "and", "operation": "gte", "value": 600, "fieldName": "customerId" } ]}}
///////////////////////////////////// List of Operators //////////////////////////////////////////////////////////////////////////////////////////
gte, gt, eq, neq, lte, lt, contains, notcontains, startswith, endswith, inlist, notinlist
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- GraphQL (>= 2.4.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on GraphQL.Extension.Types.Net:
Package | Downloads |
---|---|
GraphQL.Extension.Linq.Net
GraphQL Extensions to provide Linq extension for dynamic select and dynamic where and others. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 3,988 | 7/13/2020 |
Pagination and Search Input types