Query DSL

Yao Query DSL is used to query data from the database or other data sources. It is a powerful tool for filtering, sorting, and aggregating data to get the desired results.

Note: This document is a work in progress, some links may not work as expected.

{
  "from": "pets",
  "debug": true,
  "select": [
    "category_id",
    "category.category_name",
    ":COUNT(pets.id) as total"
  ],
  "joins": [
    {
      "left": true,
      "from": "pet_categories as category",
      "key": "category_id",
      "foreign": "category.id"
    }
  ],
  "wheres": [
    { "field": "pets.created_at", ">=": "from" },
    { "field": "pets.created_at", "<=": "to" }
  ],
  "groups": ["category_id"]
}

Table of Contents

šŸ‘‰ Query DSL Reference

SectionDescription
OverviewAn introduction to the Query DSL and its purpose.
Basics UsageBasic usage of the Query DSL.
SelectSelecting fields from the data source.
WheresFiltering data based on conditions.
JoinsJoining multiple tables to get related data.
GroupsGrouping data based on fields.
OrdersSorting data based on fields.
LimitsLimiting the number of records returned.
SubqueriesUsing subqueries to get data from nested queries.
UnionsCombining multiple queries into a single result.
Copyright Ā© 2025 Infinite Wisdom Software
Powered by Yao App Engine