Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(query-builder): add Query Builder Model topic #6072

Merged
merged 19 commits into from
Mar 31, 2025

Conversation

teodosiah
Copy link
Contributor

Closes #6054

Checklist:

  • check topic's TOC/menu and paragraph headings
  • Include TOC topic labels in topic content has a valuable update, it's new or considered as preview\ beta
  • link to other topics using ../relative/path.md
  • at the References section at the end of the topic add links to topics, samples, etc
  • reference API documentation instead of adding a section with API

  • use valid component names - [Data] Grid, IgxSelectComponent, <igx-combo>
  • use spell checker tool (VS Code, Grammarly, Microsoft Editor)
  • add inline code blocks for the names of classes / tags / properties
  • add language descriptor for the code blocks
  • check broken links (use browser add-on)
  • check if sample is working and fully visible in the topic
  • check if sample is working and fully visible in the StackBlitz
  • check if code blocks match the code in StackBlitz demo


  • do not resolve requested changes (leave that to the reviewer)
  • add pending-localization label when the review of the PR is done
  • add a member from the localization team to translate it

@igdmdimitrov igdmdimitrov changed the title docs(query-builder): add initial draft Query BUilde Model topic docs(query-builder): add initial draft Query Builder Model topic Mar 11, 2025
Otixa
Otixa previously approved these changes Mar 12, 2025
Copy link
Contributor

@Otixa Otixa left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The whole conditionName: IgxStringFilteringOperand.instance().condition('endsWith').name reads a bit weird, to be honest, but it's technically correct and it illustrates where you can get the conditions and names.

@teodosiah teodosiah marked this pull request as ready for review March 18, 2025 07:46
@teodosiah teodosiah requested a review from gedinakova March 18, 2025 07:47
@teodosiah teodosiah changed the title docs(query-builder): add initial draft Query Builder Model topic docs(query-builder): add Query Builder Model topic Mar 20, 2025
iframe-src="{environment:demosBaseUrl}/interactions/query-builder-sql-sample" >
</code-view>

## Request data from an Endpoint
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Move this section before the SQL Example section


## Request data from an Endpoint

The demo below demonstrates how the [`IgxQueryBuilderComponent`]({environment:angularApiUrl}/classes/igxquerybuildercomponent.html) expression tree could be used to requets data from an endpoint [Northwind WebAPI](https://data-northwind.indigo.design/swagger/index.html) and set it as [`IgxGridComponent`]({environment:angularApiUrl}/classes/igxgridcomponent.html) data source.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The demo below demonstrates how the [`IgxQueryBuilderComponent`]({environment:angularApiUrl}/classes/igxquerybuildercomponent.html) expression tree could be used to requets data from an endpoint [Northwind WebAPI](https://data-northwind.indigo.design/swagger/index.html) and set it as [`IgxGridComponent`]({environment:angularApiUrl}/classes/igxgridcomponent.html) data source.
The demo below demonstrates how the [`IgxQueryBuilderComponent`]({environment:angularApiUrl}/classes/igxquerybuildercomponent.html) expression tree could be used to request data from an endpoint [Northwind WebAPI](https://data-northwind.indigo.design/swagger/index.html) and set it as [`IgxGridComponent`]({environment:angularApiUrl}/classes/igxgridcomponent.html) data source.


In the event handler, could be called an `HttpClient` POST request that accepts an endpoint url and body - the [`IgxQueryBuilderComponent`]({environment:angularApiUrl}/classes/igxquerybuildercomponent.html) `expressionTree`.

After subscribing to the request, the received data should be parsed to proper data type and set it as data source of the [`IgxGridComponent`]({environment:angularApiUrl}/classes/igxgridcomponent.html).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
After subscribing to the request, the received data should be parsed to proper data type and set it as data source of the [`IgxGridComponent`]({environment:angularApiUrl}/classes/igxgridcomponent.html).
After subscribing to the request, the received data should be parsed to a proper data type and set as the data source of the [`IgxGridComponent`]({environment:angularApiUrl}/classes/igxgridcomponent.html).

@teodosiah teodosiah requested a review from gedinakova March 21, 2025 10:23
@ChronosSF ChronosSF requested review from gedinakova and Otixa March 28, 2025 15:07
ChronosSF
ChronosSF previously approved these changes Mar 28, 2025
<code-view style="height:700px"
no-theming
data-demos-base-url="{environment:demosBaseUrl}"
iframe-src="{environment:demosBaseUrl}/interactions/query-builder-request-sample" >
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While this sample can remain here to explain how the customer uses the api to make these requests, the "request sample" should be the main sample in the main topic, instead of the one simply listing the query as text.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Basically as a showcase for the QB. The main topic doesn't have to provide any additional explanation to what the sample is about.

@@ -0,0 +1,233 @@
---
title: Using Query Builder Model
_description: Angular Query Builder provides easily serializable/deserializable JSON format model, making it easy to build SQL queries. Try it Now.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
_description: Angular Query Builder provides easily serializable/deserializable JSON format model, making it easy to build SQL queries. Try it Now.
_description: Angular Query Builder provides an easily serializable/deserializable JSON format model, making it easy to build SQL queries. Try it now.

---

# Using Query Builder Model
Angular Query Builder provides serializable/deserializable JSON format model, making it easy to build SQL queries.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Angular Query Builder provides serializable/deserializable JSON format model, making it easy to build SQL queries.
Angular Query Builder provides an easily serializable/deserializable JSON format model, making it easy to build SQL queries.

@@ -0,0 +1,233 @@
---
title: Using Query Builder Model
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
title: Using Query Builder Model
title: Using the Query Builder Model

_keywords: Angular Query Builder component, Angular Query Builder control, Ignite UI for Angular, UI controls, Angular widgets, web widgets, UI widgets, Angular, Native Angular Components Suite, Angular UI Components, Native Angular Components Library
---

# Using Query Builder Model
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Using Query Builder Model
# Using the Query Builder Model

> [!Note]
> A subquery is a query nested inside another query used to retrieve data that will be used as a condition for the outer query.

Selecting the *IN / NOT-IN* operator in a `FilteringExpression` would create a subquery. After choosing entity and a column to return, it checks if the value in the specified column in the outer query matches or not any of the values returned by the subquery.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Selecting the *IN / NOT-IN* operator in a `FilteringExpression` would create a subquery. After choosing entity and a column to return, it checks if the value in the specified column in the outer query matches or not any of the values returned by the subquery.
Selecting the *IN / NOT-IN* operator in a `FilteringExpression` would create a subquery. After choosing an entity and a column to return, it checks if the value in the specified column in the outer query matches any of the values returned by the subquery.


## SQL Example

Let's take a look at a practical example how the Ignite UI for Angular Query Builder Component can be used to build SQL queries.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Let's take a look at a practical example how the Ignite UI for Angular Query Builder Component can be used to build SQL queries.
Let's take a look at a practical example of how the Ignite UI for Angular Query Builder Component can be used to build SQL queries.


In the sample below we have 3 `entities` with names 'Suppliers', 'Categories' and 'Products'.

Let's say we want to find all suppliers who supply products that belong to the 'Beverages' category. Since the data is distributed across all entities we can take advantage of the *IN* operator and accomplish the task by creating subqueries. Each subquery is represented by a `FilteringExpressionsTree` and can be converted to a SQL query through the `transformExpressionTreeToSqlQuery(tree: IExpressionTree)` method.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Let's say we want to find all suppliers who supply products that belong to the 'Beverages' category. Since the data is distributed across all entities we can take advantage of the *IN* operator and accomplish the task by creating subqueries. Each subquery is represented by a `FilteringExpressionsTree` and can be converted to a SQL query through the `transformExpressionTreeToSqlQuery(tree: IExpressionTree)` method.
Let's say we want to find all suppliers who supply products which belong to the 'Beverages' category. Since the data is distributed across all entities, we can take advantage of the *IN* operator and accomplish the task by creating subqueries. Each subquery is represented by a `FilteringExpressionsTree` and can be converted to SQL through the `transformExpressionTreeToSqlQuery(tree: IExpressionTree)` method.

)
```

Now we can set the `expressionsTree` property of the `IgxQueryBuilderComponent` to `suppliersTree`. Furthermore, every change to the query triggers a new request to the endpoint and the results data shown in the grid is refreshed.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Now we can set the `expressionsTree` property of the `IgxQueryBuilderComponent` to `suppliersTree`. Furthermore, every change to the query triggers a new request to the endpoint and the results data shown in the grid is refreshed.
Now we can set the `expressionsTree` property of the `IgxQueryBuilderComponent` to `suppliersTree`. Furthermore, every change to the query triggers a new request to the endpoint and the resulting data shown in the grid is refreshed.

@ChronosSF ChronosSF merged commit 6c3548c into vnext Mar 31, 2025
4 checks passed
@ChronosSF ChronosSF deleted the thristodorova/feat-6054 branch March 31, 2025 14:30
randriova added a commit that referenced this pull request Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants