"Specifies that a row should be returned if it satisfies any of the specified options, rather than requiring it to fulfill all the search parameters. This defaults to false, meaning AND logic will be used.",
},
string:{
type:"object",
example:{
columnName1:"value",
columnName2:"value",
},
description:
"A map of field name to the string to search for, this will look for rows that have a value starting with the string value.",
additionalProperties:{
type:"string",
description:"The value to search for in the column.",
},
},
fuzzy:{
type:"object",
description:
"Searches for a sub-string within a string column, e.g. searching for 'dib' will match 'Budibase'.",
},
range:{
type:"object",
description:
'Searches within a range, the format of this must be in the format of an object with a "low" and "high" property.',
example:{
columnName1:{
low: 10,
high: 20,
},
},
},
equal:{
type:"object",
description:
"Searches for rows that have a column value that is exactly the value set.",
},
notEqual:{
type:"object",
description:
"Searches for any row which does not contain the specified column value.",
},
empty:{
type:"object",
description:
"Searches for rows which do not contain the specified column. The object should simply contain keys of the column names, these can map to any value.",
example:{
columnName1:"",
},
},
notEmpty:{
type:"object",
description:"Searches for rows which have the specified column.",
},
oneOf:{
type:"object",
description:
"Searches for rows which have a column value that is any of the specified values. The format of this must be columnName -> [value1, value2].",
},
contains:{
type:"object",
description:
"Searches for a value, or set of values in array column types (such as a multi-select). If an array of search options is provided then it must match all.",
example:{
arrayColumn:["a","b"],
},
},
notContains:{
type:"object",
description:
"The logical inverse of contains. Only works on array column types. If an array of values is passed, the row must not match any of them to be returned in the response.",
example:{
arrayColumn:["a","b"],
},
},
containsAny:{
type:"object",
description:
"As with the contains search, only works on array column types and searches for any of the provided values when given an array.",