Ditto · Example Payload

Ditto Live Store Find Request Example

Developer ToolsDatabaseSynchronizationPeer-to-PeerEdge ComputingOffline-FirstMobile

Ditto Live Store Find Request Example is an example object payload from Ditto, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

collectionqueryargslimitoffsetsort

Example Payload

Raw ↑
{
  "collection": "people",
  "query": "age > :minAge",
  "args": {
    "minAge": 18
  },
  "limit": 50,
  "offset": 0,
  "sort": [
    {
      "property": "name",
      "direction": "ascending"
    }
  ]
}