odata-v4-sql icon indicating copy to clipboard operation
odata-v4-sql copied to clipboard

OData V4 SQL

Results 9 odata-v4-sql issues
Sort by recently updated
recently updated
newest added

running a query like `http://serviceUrl?$filter=column%20eq%20value` and using createFilter with type 2 (SQLLang.MySql) results in the filter `[column] = ?` This is valid for MSSQL but not MySql forcing me to...

Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.3 to 3.1.2. Commits 699c459 3.1.2 2f2b5ff fix: trim pattern 25d7c0d 3.1.1 55dda29 fix: treat nocase:true as always having magic 5e1fb8d 3.1.0 f8145c5 Add 'allowWindowsEscape' option 570e8b1...

dependencies

![image](https://user-images.githubusercontent.com/17941373/223185994-7e094016-d204-45fc-9a50-9868475040c3.png)

Good day to you all! Trying to create query from `not contains(property/path, 'value')`, I get the following log entry: ``` Unhandled node type: NotExpression Token { position: 20, next: 56,...

Current version of odata-v4-parser: 0.1.13 does not support Cyrillic characters. As of now v0.1.29 does. Please update odata-v4-parser version.

In a query properties in datasets / columns in database sources are referenced. How do I check the used properties against a list of valid properties? Do I have to...

I tried ``` import { createQuery } from 'odata-v4-sql'; const query = createQuery("$filter=Size eq 4 and Age gt 18;$top=100;$skip=10"); ``` but it throws

fixed toupper and tollower to use supported SQL Server functions

```js const { createFilter } = require('odata-v4-sql'); const filter = createFilter('Id eq 42'); console.log(filter.where) // == '[Id] = ?'; ``` Shouldn't this result in something like '[Id] = 42'? Or...