updated and added case insensitive support.
This commit is contained in:
@@ -10,6 +10,7 @@ namespace PoweredSoft.CQRS.GraphQL.DynamicQuery
|
||||
{
|
||||
public bool? And { get; set; }
|
||||
public FilterType Type { get; set; }
|
||||
public bool? CaseInsensitive { get; set; }
|
||||
public string Path { get; set; }
|
||||
public GraphQLVariantInput Value { get; set; }
|
||||
public bool? Not { get; set; }
|
||||
@@ -38,6 +39,7 @@ namespace PoweredSoft.CQRS.GraphQL.DynamicQuery
|
||||
return new SimpleFilter
|
||||
{
|
||||
And = And,
|
||||
CaseInsensitive = CaseInsensitive,
|
||||
Type = Type,
|
||||
Not = Not,
|
||||
Path = Path,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
||||
<PackageReference Include="PoweredSoft.DynamicQuery" Version="2.1.4" />
|
||||
<PackageReference Include="PoweredSoft.DynamicQuery" Version="2.1.5" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user