Examples
All the following examples use the Client class, set up as follows:
Copy
Querying data
The query method supports filtering, faceting, sorting, and pagination.
Copy
For full query reference, see client.query().
Retrieving all entities of a type
The get method automatically paginates through all results for a given class.
Copy
For more information, see client.get().
Loading data into a dataset
The put method loads entities into a dataset, automatically batching large payloads.
Copy
For more information, see client.put().
Working with schemas
The Schema class lets you define and manipulate domain models programmatically.
Copy
For the full Schema reference, see Schema.
Deploying a project with Gateway
The Gateway class provides a high-level interface for deploying schemas and datasets together.
Copy
For the full Gateway reference, see Gateway.