titaniumit.graphql.filtering.extentions
0.1.33
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package titaniumit.graphql.filtering.extentions --version 0.1.33
NuGet\Install-Package titaniumit.graphql.filtering.extentions -Version 0.1.33
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="titaniumit.graphql.filtering.extentions" Version="0.1.33" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add titaniumit.graphql.filtering.extentions --version 0.1.33
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: titaniumit.graphql.filtering.extentions, 0.1.33"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install titaniumit.graphql.filtering.extentions as a Cake Addin #addin nuget:?package=titaniumit.graphql.filtering.extentions&version=0.1.33 // Install titaniumit.graphql.filtering.extentions as a Cake Tool #tool nuget:?package=titaniumit.graphql.filtering.extentions&version=0.1.33
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Introduction
An extention on GraphQL.net to add filtering on clr types
Example graphql filters
Filters are based on a clrType/interface
Using AddFilter as argument. The graphql type for the filters are automaticly added
- FilterGraphType<typename>
- And/Or/Not types
- Condition type
- Any
Simple filters
condition:{
fieldName:Id
operator: equal
value: 1
}
condition:{
fieldName: DateField
operator: equal
value: "10-10-2023"
}
Operators on scalars
supported operators on scalartypes
- equal
- greater
- greaterOrEqual
- less
- lessOrEqual
- notEqual
Booleans
supported
- and
- or
- not
Collections
to filter collection members the any field on the filtertype is present that contains per colletion field a member.
Resolvers
Using filters in a Resolver.
Field<DiverGraphType>("Diver")
.AddFilter("filter").FilterType<Diver>()
.Resolve(ctx =>
{
var filter = ctx.GetFilterExpression<Diver>("filter");
var datasource = ctx.RequestServices!.GetRequiredService<IDivers>();
if (filter != null)
return datasource.Divers.SingleOrDefault(filter.Compile());
else
return null;
});
When getting a filter on parent for a child
Field<ListGraphType<DiveGraphType>>("Dives")
.Resolve( ctx => {
var datasource = ctx.RequestServices!.GetRequiredService<IDives>();
var expression = ctx.GetSubFilterExpression<Dive>();
if( expression != null){
return datasource.Dives.Where( d => d.Diver?.Id == ctx.Source.Id).Where(expression.Compile());
} else{
return datasource.Dives.Where( d => d.Diver?.Id == ctx.Source.Id);
}
});
query examples
query GetDiverFixedFilter {
diver(filter:{
condition:{
fieldName:id
operator: equal
value: 1
}
}){
name
email
id
}
}
query GetDiverByEmail {
diver(filter:{
condition:{
fieldName: email
operator: equal
value: "john@divers.down"
}
}){
name
email
id
}
}
query GetDiversWithCoarseFilters {
divers(filter:{
any:{
courses:{
condition:{
fieldName: name
operator:equal
value: "OpenWater"
}
}
}
}){
name
email
id
}
}
query GetDiverFilterById($id: ValueScalar!) {
diver(filter:{
condition:{
fieldName:id
operator: equal
value: $id
}
}){
id
}
}
query GetDiversWithDivesAt($location:ValueScalar!){
divers(filter: {
any:{
dives:{
condition:{
fieldName:location
operator:equal
value: $location
}
}
}
}){
name
dives{
start
end
}
}
}
Setup
Todo
- documentation
- more test cases
- custom filter functions
- configuration options like, casing.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 is compatible. 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 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- titaniumit.graphql.filtering (>= 0.1.33)
-
net7.0
- titaniumit.graphql.filtering (>= 0.1.33)
-
net8.0
- titaniumit.graphql.filtering (>= 0.1.33)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.43 | 92 | 9/30/2024 |
0.1.42 | 84 | 9/30/2024 |
0.1.41 | 75 | 9/30/2024 |
0.1.40 | 73 | 9/30/2024 |
0.1.39 | 117 | 6/20/2024 |
0.1.38 | 102 | 5/23/2024 |
0.1.37 | 94 | 5/23/2024 |
0.1.36 | 95 | 5/23/2024 |
0.1.35 | 94 | 5/23/2024 |
0.1.34 | 118 | 3/28/2024 |
0.1.33 | 105 | 1/25/2024 |
0.1.32 | 96 | 1/25/2024 |
0.1.31 | 97 | 1/19/2024 |
0.1.30 | 104 | 1/10/2024 |
0.1.29 | 116 | 1/3/2024 |
0.1.28 | 114 | 1/3/2024 |
0.1.27 | 106 | 1/3/2024 |