We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09a3e3f commit 29ff006Copy full SHA for 29ff006
1 file changed
src/query-tools/query-validator.ts
@@ -169,7 +169,15 @@ function queryFieldValidator(
169
}
170
171
172
- if (type !== 'between') {
+ if (
173
+ type === 'where' ||
174
+ type === 'whereAnyOf' ||
175
+ type === 'not' ||
176
+ type === 'lessThan' ||
177
+ type === 'lessThanOrEqual' ||
178
+ type === 'greaterThan' ||
179
+ type === 'greaterThanOrEqual'
180
+ ) {
181
const testObject = Object.assign(
182
new request.payloadType(),
183
request.query[type]
0 commit comments