2.6.0 • Published 1 month ago

@lexxsoft/odata-query v2.6.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

lexxsoft/odata-query

GitHub package.json version GitHub GitHub all releases

Contents

Installation

npm i lexx-odata-query-builder

Usage

Basic usage

const o = new QueryBuilder('http://site.com/api/users')
o.toString()

Output http://site.com/api/users

Or with custom query params

const o = new QueryBuilder('http://site.com/api/users')
o.querySet('lang', 'en')
o.toString()

Output http://site.com/api/users?lang=en

If you use query builder to create url for axios or another http client, you can pass only path to script, without origin

const o = new QueryBuilder('/users')
o.querySet('lang', 'en')
o.toString()

Output /users?lang=en

Ordering

Use order method to add order query parameters

Note: order method has an alias orderby

const o = new QueryBuilder('/users')
o.order(new QueryOrder('name1')).toString()

Output /users?$orderby=name1 asc

Also, you can combine several order conditions

const o = new QueryBuilder('/users')
o.order(new QueryOrder('name1')).order(new QueryOrder('name2', QueryOrderDirection.DESC))
o.toString()

Output /users?$orderby=name1 asc,name2 desc

Expanding

Use expand method to add expand query parameter

const o = new QueryBuilder('/users')
o.expand('company').toString()

Output /users?$expand=company

Or combine several expand parameters

const o = new QueryBuilder('/users')
o.expand('company').expand('jobtitle').toString()

Output /users?$expand=company,jobtitle

To add counter to expanding parameter, add true as second parameter of expand method

const o = new QueryBuilder('/users')
o.expand('emails', true).toString()

Output /users?$expand=company($count=true)

Limiting

For limiting returned data, use limit and offset methods

Note: limit has an alias top offset has aliases skip and shift

const o = new QueryBuilder('/users')
o.top(7).skip(4).toString()

Output /users?$top=7&$skip=4

Paging

To limit output data by page, use page method.

const o = new QueryBuilder('/users')
o.page(3).toString()

Output /users?$top=10&$skip=20

By default, it has 10 records per page, but you free to change in via QueryBuilder configuration.

const o = new QueryBuilder('/users', {rowsPerPage: 5})
o.page(3).toString()

Output /users?$top=5&$skip=10

Filtering

Use filter method to add constrains. QueryBuilder accept only one filter, but you free to use and and or methods of QueryFilter to combine them together.

const oFilter = new QueryFilter('gender', 'f')
oFilter.and('age', 16, QueryFilterSign.GT)
const o = new QueryBuilder('/users')
o.filter(oFilter).toString()

Output /users?$filter=gender eq f and age gt 16

Filter operations

  • EQ
  • GT
  • GE
  • LT
  • LE
  • NE
  • SUBSTRINGOF
  • STARTSWITH
  • ENDSWITH

Counting

count method will add $count suffix to url

const o = new QueryBuilder('/users')
o.count().toString()

Output /users/$count

Of course, you can use count with filter for example.

const oFilter = new QueryFilter('gender', 'f')
oFilter.and('age', 16, QueryFilterSign.GT)
const o = new QueryBuilder('/users')
o.filter(oFilter).count().toString()

Output /users/$count?$filter=gender eq f and age gt 16

ID

ID is primary key of database. Use id method to create oData request for single entity.

const o = new QueryBuilder('/users')
o.id(4).toString()

Output /users(4)

Select

Use select method to constrain returned fields

const o = new QueryBuilder('/users')
o.select(['id', 'name']).toString()

Output /users?$select=id,name

Count

Use count method to get request for count value

const o = new QueryBuilder('/users')
o.count()

Output `/users/$count

Other-hand, if you want to make request of data with total count, you can use inlineCount method Use count method to get request for count value

const o = new QueryBuilder('/users')
o.inlineCount()

Output `/users?$count=true

search

Free-text search parameter, which was added for OData v4.0

const o = new QueryBuilder('/users')
o.search('John Doe')

Output `/users?$search=John Doe

File content

Getting the file content is extra path. It will not make effect to real oData server, but you can use it in development as ideology.

File content as-is

To get file content, call asFileContent method

const o = new QueryBuilder('/files')
o.id(4).asFileContent().toString()

Output /files(4)/_file

Base64 encoded content

Sometimes needed to get base64 encoded content. Use asFileContentBase64 method to generate path

const o = new QueryBuilder('/files')
o.id(4).asFileContentBase64().toString()

Output /files(4)/_file64

Parsing URL

For case if you already have url, and you want to add or change some parameter, you may use parse method, to parse url and get instance of QueryBuilder

const o = QueryBuilder.parse(`/employee`)
consle.log(o.toString())

Output /employee

Or, if you use full url

const o = QueryBuilder.parse(`http://site.com/api/users`)
consle.log(o.toString())

Output /users

Output is short, because parse method get only script path. To get full url, add true as second parameter, to tell parser save url as is

const o = QueryBuilder.parse(`http://site.com/api/users`)
consle.log(o.toString())

Output http://site.com/api/users

Of-cause, you can use this method to parse url with query

const o = QueryBuilder.parse(`/users?$count=true`)
consle.log(o.toString())

Output /users?$count=true

2.6.0

1 month ago

2.5.0

2 months ago

2.5.2

2 months ago

2.5.1

2 months ago

2.5.3

2 months ago

2.4.1

2 months ago

2.4.0

2 months ago

2.4.2

2 months ago

2.4.5

2 months ago

2.4.4

2 months ago

2.4.7

2 months ago

2.4.6

2 months ago

2.3.4

3 months ago

2.3.3

3 months ago

2.3.0

3 months ago

2.2.1

3 months ago

2.2.0

3 months ago

2.3.2

3 months ago

2.3.1

3 months ago

2.1.2

3 months ago

2.1.1

3 months ago

2.1.3

3 months ago

2.1.6

3 months ago

2.1.0

3 months ago

2.0.0

3 months ago

1.21.1

7 months ago

1.21.0

7 months ago

1.20.2

7 months ago

1.20.1

7 months ago

1.20.0

7 months ago