Skip to content

Commit 8f9a799

Browse files
authored
Added DateOperationFilterInputType (#8409)
1 parent 70e9f2c commit 8f9a799

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using HotChocolate.Data.Filters;
2+
using HotChocolate.Types;
3+
4+
namespace HotChocolate.Data;
5+
6+
public class DateOperationFilterInputType
7+
: ComparableOperationFilterInputType<DateType>
8+
{
9+
protected override void Configure(IFilterInputTypeDescriptor descriptor)
10+
{
11+
descriptor.Name("DateOperationFilterInput");
12+
base.Configure(descriptor);
13+
}
14+
}

0 commit comments

Comments
 (0)