HTTP Data API

HTTP API - DQL Queries

This article provides an overview of how to perform Ditto Query Language (DQL) queries in Ditto using the HTTP data API.

RPC Endpoint

Use the following endpoint to execute your queries: https://<CLOUD_ENDPOINT>/api/v4/store/execute

DQL Support

The DQL HTTP API supports the following DQL commands:

  • SELECT
  • INSERT
  • UPDATE

EVICT is not currently available for the Big Peer, although it's in development. To learn more about removing data from your Big Peer instance, see Writing: HTTP (Legacy) .

SELECT

To retrieve documents from a collection, use a SELECT statement and, if desired, include optional clauses pinpointing criteria to further filter results.

For more information, see Ditto Query Language > SELECT.

Optional Clauses for Filtering

The following table provides an overview of the various clauses you can use to set granular controls for filter operations:



Basic SELECT Operation

The following syntax outlines the basic structure of a SELECT statement:

DQL


cURL Request

For instance, performing the following cURL request to SELECT documents from the cars collection:

Curl


Response Object

After invoking a request to INSERT documents, Ditto returns a response object similar to the following example:

JSON


INSERT with Arguments

To create new documents, use an INSERT statement and, if desired, optional arguments defining the fields to include.

DQL


cURL Request

For example, initiating creating doc1 and doc2 as follows:

Curl


Sample Response

JSON


UPDATE

To modify the content of existing documents in a collection, use the UPDATE operation.

DQL


For more information, see Ditto Query Language > UPDATE.

Response Object Definition

The following snippet outlines the structure of a typical response for insert or update document operations:

JSON