LedgerCore
Query Engine

Query Syntax

Learn the query language for the Unified Query Engine.

Basic Structure

{
  "connector": "string",
  "dataType": "string",
  "filters": {},
  "sort": {},
  "limit": 100,
  "offset": 0
}

Filter Operators

  • $eq - Equal to
  • $ne - Not equal to
  • $gt - Greater than
  • $gte - Greater than or equal
  • $lt - Less than
  • $lte - Less than or equal
  • $in - In array
  • $nin - Not in array

Examples

See Examples for common query patterns.

Was this page helpful?