INPUT_OBJECT
PropertyFilterInput
# GraphQL Schema definition
1 input PropertyFilterInput { 5 2 # selects records for which the property of type Array contains all of the 3 # provided elements 4 String!] : [ 9 6 # selects records for which the property of type Array contains at least one of 7 # the provided elements 8 String!] : [ 13 10 # selects records where the property of type String contains the provided string 11 # as a sub-string (case insensitive) 12 String : 17 14 # select records for which a distance between its point from <:property> and 15 # <:center> point is less than <:distance>. 16 GeoPropertyFilterInput : 21 18 # selects records for which the property of type String ends with the provided 19 # argument (case insensitive) 20 String : 26 22 # if argument is true, selects records for which the property exists and is not 23 # null; if argument is false, selects records for which the property doesn't exist 24 # or is null 25 Boolean : 29 27 # name of the property 28 String! : 33 30 # selects records for which the property of type Array may contain some, but not 31 # all of the provided elements 32 String!] : [ 37 34 # selects records for which the property of type Array doesn't have any element in 35 # common with the provided array of elements 36 String!] : [ 41 38 # selects records where the property of type String does not contain the provided 39 # string as a sub-string (case insensitive) 40 String : 45 42 # selects records for which the property of type String does not end with the 43 # provided argument (case insensitive) 44 String : 49 46 # selects records for which the property of type String does not start with the 47 # provided argument (case insensitive) 48 String : 53 50 # property specified by name should have a value that is different from the value 51 # provided 52 String : 57 54 # selects records for which the property is not included as a sub-array or is not 55 # an element of the provided Array argument 56 String!] : [ 61 58 # select records for which a <:point> is not within <:radius_in_km_from_property> 59 # km distance from its <:property> point 60 GeoRadiusPropertyFilterInput : 66 62 # selects records for which the property value is inside the given range; range 63 # options that can be given are lt (lower than), lte (lower than or equal), gt 64 # (greater than), gte (greater than or equal) 65 RangeFilter : 70 67 # selects records for which the property of type String starts with the provided 68 # argument (case insensitive) 69 String : 74 71 # property specified by name should have a value that is equal to the value 72 # provided 73 String : 77 75 # property specified by name should be equal to the value provided 76 Boolean : 80 78 # property specified by name should be equal to the value provided 79 Float : 84 81 # selects records for which the property is included as a sub-array or is an 82 # element of the provided Array argument 83 String!] : [ 87 85 # property specified by name should be equal to the value provided 86 Int : 91 88 # select records for which a <:point> is within <:radius_in_km_from_property> km 89 # distance from its <:property> point 90 GeoRadiusPropertyFilterInput : 92 }