import { ExecuteQueryParams, ExecuteQueryResult } from '../../types'; /** * React hook that executes a data query. * * This approach, which offers an alternative to the {@link ExecuteQuery} component, is similar to React Query's `useQuery` hook. * * ## Example * * Execute a query to retrieve revenue per country per year from the Sample ECommerce data model. Then display the data in a table and column chart. * *