GraphQL.Extension.Types.Core
1.0.0
dotnet add package GraphQL.Extension.Types.Core --version 1.0.0
NuGet\Install-Package GraphQL.Extension.Types.Core -Version 1.0.0
<PackageReference Include="GraphQL.Extension.Types.Core" Version="1.0.0" />
paket add GraphQL.Extension.Types.Core --version 1.0.0
#r "nuget: GraphQL.Extension.Types.Core, 1.0.0"
// Install GraphQL.Extension.Types.Core as a Cake Addin #addin nuget:?package=GraphQL.Extension.Types.Core&version=1.0.0 // Install GraphQL.Extension.Types.Core as a Cake Tool #tool nuget:?package=GraphQL.Extension.Types.Core&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 | 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.0 is compatible. netcoreapp2.1 is compatible. netcoreapp2.2 is compatible. netcoreapp3.0 is compatible. netcoreapp3.1 is compatible. |
NuGet packages (1)
Showing the top 1 NuGet packages that depend on GraphQL.Extension.Types.Core:
Package | Downloads |
---|---|
GraphQL.Extension.Linq.Core
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 | 565 | 7/13/2020 |
Pagination and Search Input types.