Datastore
The Datastore is cloud database. It supports file attachments.
Retribute datastore
Search datastore
You can search datastore with some operands. You will get HexabaseItem that matched your search conditions.
Execute search
After set conditions to the query, you can retribute items with query. The query is optional.
Search operands
Page and limit
page method specifies which page data is to be retrieved. You can develop pagination using the page and per methods.
Equal
equalTo method can be used to search for matching data in a given field.
You can use regexp for search.
Not equal
notEqualTo method can be used to search for NOT matching data in a given field.
In Array
inArray method provides to search the data that maching all of givin data.
Not in
notInArray method provides to search the data that unmaching all of givin data.
Greater than ">"
You can use greaterThan method to int and DateTime.
Greater than or equal
Only support int and DateTime.
Less than
Only support int and DateTime.
Less than or equal
Only support int and DateTime.