Query with Backand REST API

250 Views Asked by At

I have a table for sport. Sample of table is include here. I want to execute "SELECT * FROM sport WHERE TYPE='indoor'" this kind of query using backand REST api.

I have read following article. But i was unable to success. Please explain How do we execute this kind of queries and How do we use filter,exclude, deep,search and pageSize with backand REST API.

enter image description here

1

There are 1 best solutions below

0
On

You have to use filter parameter in your query.

Your filter is like this:

   [ {    "fieldName": "type",   
          "operator": "equal",    
          "value": "Indoor"  }]

You can find more information in Rest tab in your object.