GraphQL.Extension
1.0.0.1
See the version list below for details.
dotnet add package GraphQL.Extension --version 1.0.0.1
NuGet\Install-Package GraphQL.Extension -Version 1.0.0.1
<PackageReference Include="GraphQL.Extension" Version="1.0.0.1" />
paket add GraphQL.Extension --version 1.0.0.1
#r "nuget: GraphQL.Extension, 1.0.0.1"
// Install GraphQL.Extension as a Cake Addin #addin nuget:?package=GraphQL.Extension&version=1.0.0.1 // Install GraphQL.Extension as a Cake Tool #tool nuget:?package=GraphQL.Extension&version=1.0.0.1
/////////////////////////////////////// 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 | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Pagination and Search Input types.