Data can be queried using the /query
suffix and operators.
Query Operators
We offer the following operators you may query against numbers and dates:
- __eq() - equals operator, i.e. find row with
Id
of1
/query?Id=__eq(1)
. - __lt() - less than operator, i.e. find
Amount
less than5.75
/query?Amount=__lt(5.75)
. - __lte() - less than or equals operator, i.e. find
Amount
less than or equal to5.75
/query?Amount=__lte(5.75)
. - __gt() - greater than operator, i.e. find
Created Date
greater than8/01/2021
/query?Created Date=__gt(8/01/2021)
. - __gte() - greater than or equals operator, i.e. find
Created Date
of8/01/2021
/query?Created Date=__gte(8/01/2021)
.
Querying multiple columns
You can query multiple columns by using the /query
suffix, combined with the query operators following the pattern <Column Name>=<Operator(Column Value)>
.
Wildcard matching works when querying multiple columns too.
- You can find all rows with
Jane
inside theName
column and greater than or equals to21
in theAge
column and dates less than07/01/2020
in theHire Date
column by appending the suffix:/query?Name=*Jane*&Age=__gte(21)&Hire Date=__lt(7/01/2020)
________________
Shell
Python
Javascript
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article