We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93efca6 commit 83c60cfCopy full SHA for 83c60cf
__tests__/integration/__snapshots__/schema.test.js.snap
@@ -273,9 +273,21 @@ input BigFloatFilter {
273
# Checks for values equal to this value.
274
equalTo: BigFloat
275
276
+ # Checks for values greater than this value.
277
+ greaterThan: BigFloat
278
+
279
+ # Checks for values greater than or equal to this value.
280
+ greaterThanOrEqualTo: BigFloat
281
282
# Checks for values in this list.
283
in: [BigFloat!]
284
285
+ # Checks for values less than this value.
286
+ lessThan: BigFloat
287
288
+ # Checks for values less than or equal to this value.
289
+ lessThanOrEqualTo: BigFloat
290
291
# Checks for values equal to this value, treating null like an ordinary value.
292
notDistinctFrom: BigFloat
293
0 commit comments