Skip to content

General Object Retrieval API

Advanced search use-cases supported by Backendless include:

  • Search with a query (a "where clause" search) -retrieves data objects which satisfy a condition.
  • Paged data retrieval - retrieves a "page" of data of the given size from the specified offset.
  • Sorted data object retrieval - retrieves a collection of data objects sorted by specified properties.
  • Retrieval of related objects - fetching data objects through special "relation" properties. See retrieval of related data objects.
  • Calculating aggregate values for a collection of objects - retrieves sum, average, min, max or count for all or a subset of objects in a table. See Aggregate Functions for more details.

Backendless supports the options listed above with a special class - DataQueryBuilder. The class includes various properties to configure paging and sorting, specify a search query (the where clause), and/or to request retrieval of objects for specific related properties. The DataQueryBuilder class provides the following methods:

Argument                Description
create() Creates a new instance of DataQueryBuilder.
setWhereClause Sets a search query. A query must be in the SQL-92 syntax (the "where" clause part).
addProperty Adds a property to the list of properties/columns to be retrieved from the server. For additional details see the Working with Properties section of this guide.
addProperties Adds the specified properties to the list of properties/columns to be retrieved from the server. For additional details see the Working with Properties section of this guide.
setProperties Removes any previously added properties and sets the specified ones to be retrieved from the server. For additional details see the Working with Properties section of this guide.
excludeProperties Requests the server to exclude named properties from the response. For additional details see the Working with Properties section of this guide.
excludeProperty Requests the server to exclude the specified property from the response. For additional details see the Working with Properties section of this guide.
addAllProperties Requests the server to return all available properties. For additional details see the Working with Properties section of this guide.
setSortBy Sets an array of column names to sort the data objects in the response by.
setRelated Sets an array of related columns names. Objects from the related columns are included into the response. For information about relation retrieval, see the Relations (Retrieve) chapter of the documentation.
setRelationsDepth Sets the number of "levels" in the hierarchy of related objects to include into the response.
setPageSize Sets the page size - which is the number of objects to return in the response. Maximum value is 100. For more information on paging, see the Data retrieval with Paging section.
setOffset Sets the offset - an index in the server-side storage from where the data objects should be retrieved.
setGroupBy Used with Aggregate Functions. Sets the name of the columns to group the results by.
addGroupBy Used with Aggregate Functions. Add the name of the columns to the existing groupBy collection to group the results by.
setHavingClause Used with Aggregate Functions. Sets a condition on a aggregate function to filter groups.

Method Signature

Blocking API

// Return value from the server is a collection of java.util.Map objects; 
List<Map> result;

// The data table must be identified by name. The API
// returns a collection of Map objects.
DataQueryBuilder queryBuilder = DataQueryBuilder.create();
result = Backendless.Data.of( "TABLE-NAME" ).find( queryBuilder );
List<E> result = Backendless.Data.of( E ).find( DataQueryBuilder queryBuilder );

Non-Blocking API

Backendless.Data.of( "TABLE-NAME" ).find( DataQueryBuilder query, 
                                          AsyncCallback<List<Map>> );
Backendless.Data.of( E ).find( DataQueryBuilder queryBuilder, 
                               AsyncCallback<List<E>> );

where:

Argument                Description
TABLE-NAME Name of the table to retrieve data from.
E Java class identifying the table to retrieve data from. The name of the class must match the name of the table.
queryBuilder An instance of DataQueryBuilder - contains the search query and other search options.
responder A responder object which will receive a callback when the search operation returns the result. Applies to the asynchronous method only.

Return Value

The synchronous method returns a collection of strongly typed objects found as a result of the query execution. The asynchronous call receives the return value through a callback executed on the AsyncCallback object.

Codeless Reference

data_service_load_objects_main

where:

Argument                Description
table name Name of the data table from where the objects are retrieved.
where clause A search query used by the server it to determine objects matching the condition.
having clause Sets a condition on a aggregate function to filter groups.
relations Name of the related property to load. For example, if table employees has a relation column homeAddress pointing to an object in the Address table, the value of the parameter would be homeAddress. The syntax allows to add relations of relations. For example, if the same Address table has a relation country pointing to the Country table, then homeAddress.country would instruct the backend to load the related Country object.
properties Names of the properties/columns for which  to load the corresponding values.
exclude properties Names of the properties/columns that should not be included in the response.
relations depth Depth of the relations to include into the response.
relations page size Sets the number of related objects returned in the response.
sort by Lists properties by which the returned collection should be sorted by.
group by Sets the name of the columns to group the results by.
page size Sets the page size which is the number of objects to be returned in the response.
page offset Zero-based index of the object in the persistent store from which to run the search. This parameter should be used when implementing paged access to data. Suppose the first request returned 20 objects (if pageSize is set to 20) and there are 100 objects total. The subsequent request can set offset to 20, so the next batch of objects is loaded sequentially.
distinct Used to return only unique values from a column.
file reference prefix This property allows replacing the default URL file prefix. For instance, when the operation returns a path to a file stored on the server ("https://yourdomain.backendless.app/my-file.jpg"), then you can reconstruct it by passing the new file name that must start with a slash - "/wonderful_forest.jpg". It is useful when you want the client application to open a specific file locally.

Examples

For examples on using the advanced object retrieval API, see the following sub-sections: