Queries
The Business NXT schema supports reading data (with a query request) as well as modifying data (with a mutation request). These two operations are exposed at the top of the schema with the query and mutation fields, as shown in the following image:

Here, you will learn about reading data. For inserts, updates, and deletes, see The Mutation Type.
Section Content
The Query Type
GraphQL Query type enables querying various tables with fields like useCompany for company data and useCustomer for system information.
Grouping
API documentation on grouping data, including SQL examples, GraphQL equivalents, and parameters for filtering, sorting, paginating, and applying aggregate functions.
Aggregates
Aggregate functions in GraphQL for computing values in table fields. Supports sum, average, count, min, max, variance, and more.
Distinct values
Guide to fetch distinct table values using distinct argument, translating into SQL. Examples include account groups, customers, and order types, with equivalent groupBy queries.