odata-query icon indicating copy to clipboard operation
odata-query copied to clipboard

OData v4 query builder

Results 32 odata-query issues
Sort by recently updated
recently updated
newest added

Support all transforms defined within [spec](http://docs.oasis-open.org/odata/odata-data-aggregation-ext/v4.0/odata-data-aggregation-ext-v4.0.html) - [x] aggregate - [ ] topcount - [ ] topsum - [ ] toppercent - [ ] bottomcount - [ ] bottomsum -...

- https://github.com/object/Simple.OData.Client/wiki/Batch-requests - https://damienbod.com/2014/08/14/web-api-odata-v4-batching-part-10/ - https://blogs.msdn.microsoft.com/webdev/2013/11/01/introducing-batch-support-in-web-api-and-web-api-odata/

According to Oasis ABNF for OData, `not` operator must be followed by `RWS`, a.k.a. a _required_ whitespace. The library puts no space between `not` and the following brackets `()`. This...

Hi, What's wrong in this simple query? `buildQuery({ select: ['name1', 'name2'], top: 5, orderBy: 'createdon' });` For error see attached pic ![Screenshot 2022-08-28 181701](https://user-images.githubusercontent.com/19572565/187081369-2a98928f-fa8a-46b3-af18-adfe5c9a5b40.jpg) Thank you!

If the endpoint accepts additional query parameters other than oData queryparams, we have to append them after the buildQuery manually. To avoid this can we create a collection of custom...

Maybe I am missing something and this is already possible. What I want is essentially `$filter=Property eq AnotherProperty`. This does not work: `card: { author: { id: { eq: {...

According to Oasis ABNF for OData, not operator must be followed by RWS, a.k.a. a required whitespace. The library puts no space between not and the following brackets (). This...

Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3. Release notes Sourced from json5's releases. v2.2.3 Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299) v2.2.2 Fix: Properties...

dependencies

Was looking to see if there were plans to support compute query option? We have API's that support the computer query option but I cannot find any way to create...

In this sample, `Expand` is not able to check that each entry in the select array is a key of the optional `maybe` property of the `parent` type. I'd love...