Add range filter options to the Delivery API (#15353)

* Add range filter options to the Delivery API

* Add range filter examples to Swagger docs
This commit is contained in:
Kenn Jacobsen
2023-12-05 11:01:25 +01:00
committed by GitHub
parent 12a43c2406
commit e7279d2ff0
6 changed files with 188 additions and 3 deletions

View File

@@ -5,5 +5,9 @@ public enum FilterOperation
Is,
IsNot,
Contains,
DoesNotContain
DoesNotContain,
LessThan,
LessThanOrEqual,
GreaterThan,
GreaterThanOrEqual
}