updated and added case insensitive support.

This commit is contained in:
David Lebee
2021-04-27 14:08:39 -04:00
parent 3020fbf126
commit de72b86abf
5 changed files with 9 additions and 4 deletions
@@ -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>