Getting Started with the KendoReact Data QueryPremium
Updated on Sep 2, 2026
This article covers adding the Data Query package to your project and importing its functions.
Installing the Package
To add the Kendo UI Data Query package to your project, run the following command. The package has no external dependencies:
sh
npm install --save @progress/kendo-data-queryImporting Functions
Data Query uses named exports. Import only the functions you need:
js
import { process, orderBy, filterBy, groupBy, aggregateBy } from '@progress/kendo-data-query';
Check the API Reference for a complete list of exported functions and types.