-
**Problem description.**
A frequent use case is to modify a target filter. To do that, we have to navigate to "Target Filters" view and select a specific filter by clicking on its name. After that a …
-
While playing with comparators, i found a problem with the ~ comparator.
The query LIKE syntax doesn't work as expected and the problem is not the query itself, but the expression:
catalog.name ~ 'e…
-
If I have the following column:
```sql
delete INTEGER AS Boolean NOT NULL,
```
and I use the Android Driver on my phone it will crash at runtime.
> android.database.sqlite.SQLiteException: …
-
I keep coming back to this idea that it might be possible to replace our current `filters` option in the `module.config.js` file that Field Modules provide with a GraphQL query. I'm really not satisfi…
-
Where applicable, an Operation should give the option of using an alternative syntax. Examples of the alternative syntaxes are below. These alternatives were copied from https://github.com/jirutka/rsq…
-
Submitting Author: Alejandro Baranek (@kenarab) Leonardo Belen (@leobelen)
Repository: https://github.com/rOpenStats/RSQL
Version submitted: 0.1.2
Editor: TBD
Reviewers: TBD
Archive: TB…
-
### How to Reproduce
Compare
https://github.com/jirutka/rsql-parser
and https://tools.ietf.org/html/draft-nottingham-atompub-fiql-00#section-3.2.2
with https://github.com/molgenis/molgenis/blob/m…
-
const rsqlStr = 'name=="Kill Bill",year=ge=2000';
let result;
try {
result = rsql.RsqlToSqlConverter.getInstance().convert(rsqlStr);
} catch (e) {
console.warn(e);
}
console.log(result)…
-
I have been trying to run an integrated test with H2, persisting some data to the database and trying to retrieve it with RSQL and RSQLJPASupport specifications. It works well when the query is empty,…
-
Does RSQL have any special way to support case insensitive `like` queries? We've been using `value=*abc*` which works well as long as the backing store isn't collated in a case-sensitive way.