titaniumit.graphql.filtering.extentions
0.1.43
dotnet add package titaniumit.graphql.filtering.extentions --version 0.1.43
NuGet\Install-Package titaniumit.graphql.filtering.extentions -Version 0.1.43
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.43" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="titaniumit.graphql.filtering.extentions" Version="0.1.43" />
<PackageReference Include="titaniumit.graphql.filtering.extentions" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add titaniumit.graphql.filtering.extentions --version 0.1.43
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: titaniumit.graphql.filtering.extentions, 0.1.43"
#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.
#addin nuget:?package=titaniumit.graphql.filtering.extentions&version=0.1.43
#tool nuget:?package=titaniumit.graphql.filtering.extentions&version=0.1.43
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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.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.43)
-
net7.0
- titaniumit.graphql.filtering (>= 0.1.43)
-
net8.0
- titaniumit.graphql.filtering (>= 0.1.43)
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 | 119 | 6 months ago |
0.1.42 | 103 | 6 months ago |
0.1.41 | 94 | 6 months ago |
0.1.40 | 92 | 6 months ago |
0.1.39 | 135 | 9 months ago |
0.1.38 | 121 | 5/23/2024 |
0.1.37 | 106 | 5/23/2024 |
0.1.36 | 113 | 5/23/2024 |
0.1.35 | 107 | 5/23/2024 |
0.1.34 | 129 | 3/28/2024 |
0.1.33 | 115 | 1/25/2024 |
0.1.32 | 107 | 1/25/2024 |
0.1.31 | 110 | 1/19/2024 |
0.1.30 | 114 | 1/10/2024 |
0.1.29 | 129 | 1/3/2024 |
0.1.28 | 127 | 1/3/2024 |
0.1.27 | 119 | 1/3/2024 |