query-builder-odata
TypeScript icon, indicating that this package has built-in type declarations

1.5.0 • Public • Published

query-builder-odata

query-builder-odata builds OData v4 queries.

NPM Version Action Status Coverage Status License

Installation

yarn add query-builder-odata

or

npm install --save query-builder-odata

Create a query

import { QueryBuilder } from 'query-builder-odata';

const query = new QueryBuilder()
  .top(10)
  .skip(10)
  .count()
  .select('name')
  .orderBy('name')
  .expand('Books', e => e.select('title'))
  .filter(f => f.eq('name', 'John Doe'))
  .toQuery();

query => "?$top=10&$skip=10&$count=true&$select=name&$orderby=name&$expand=Books($select=title)&$filter=name eq 'John Doe'"

Usage

Pagination

Top

const query = new QueryBuilder()
  .top(10)
  .toQuery();

query => "?$top=10"

Skip

const query = new QueryBuilder()
  .skip(10)
  .toQuery();

query => "?$skip=10"

Counting

const query = new QueryBuilder()
  .count()
  .toQuery();

query => "?$count=true"

Selecting

const query = new QueryBuilder()
  .select('id', 'name')
  .toQuery();

query => "?$select=id,name"

Ordering

const query = new QueryBuilder()
  .orderBy('id desc' ,'name')
  .toQuery();

query => "?$orderBy=id desc,name"

Expanding

const query = new QueryBuilder()
  .expand('Books')
  .toQuery();

query => "?$expand=Books"

Nested expand

const query = new QueryBuilder()
  .expand('Books', e =>
    e.expand('Chapters')
  )
  .toQuery();

query => "?$expand=Books($expand=Chapters)"

Nested expand with other queries

Expand can be used together with top, skip, count, select, orderBy, filter

const query = new QueryBuilder()
  .expand('Books', e => e
    .select('title')
    .orderBy('isbn')
  )
  .toQuery();

query => "?$expand=Books($select=title;$orderBy=isbn)"

Filtering

const query = new QueryBuilder()
  .filter(f => f.eq('name', 'John Doe'))
  .toQuery();

query => "?$filter=name eq 'John Doe'"

Comparison operator

Supported operators:

  • eq, ne, gt, ge, lt, le, in
  • startswith, endswith, contains

When using multiple operators, the logical and operator is used by default.

const query = new QueryBuilder()
  .filter(f => f
    .startsWith('name', 'John')
    .gt('rating', 5)
  )
  .toQuery();

query => "?$filter=startswith(name, 'John') and rating gt 5"

Logical operator

Supported operators: and, or

const query = new QueryBuilder()
  .filter(f =>
    f.or(o => o
      .startsWith('name', 'John')
      .gt('rating', 5)
    )
  )
  .toQuery();

query => "?$filter=startswith(name, 'John') or rating gt 5"

Duplicate query operators

When adding multiple query operators of the same type, one of two scenarios will happen: overriding or addition.

Overriding

The following operators will override the existing value: top, skip, count

const query = new QueryBuilder()
  .top(10)
  .top(15)
  .toQuery();

query => "?$top=15"

Addition

The following operators will add to the existing value: select, orderBy, expand, filter

const query = new QueryBuilder()
  .select('name')
  .select('age')
  .toQuery();

query => "?$select=name,age"

More examples can be found in the tests.

Package Sidebar

Install

npm i query-builder-odata

Weekly Downloads

1

Version

1.5.0

License

MIT

Unpacked Size

33.9 kB

Total Files

5

Last publish

Collaborators

  • xiadevisser