rql icon indicating copy to clipboard operation
rql copied to clipboard

Resource Query Language for REST

Results 20 rql issues
Sort by recently updated
recently updated
newest added

without this fix, when using a filter using more than one column gorm would try to use the `FilterArgs` only on the first column. gorm api reference: https://github.com/go-gorm/gorm/blob/373bcf7aca01ef76c8ba5c3bc1ff191b020afc7b/chainable_api.go#L155

UUIDs are widely used, and due to that I think they deserve to be natively supported. Let me know what you think.

As I know, I need to create a parser to be able to parse the query into params. Like: ```go QueryParser = rql.MustNewParser(rql.Config{ Model: User{}, FieldSep: ".", }) // and...

When running rql_test sometimes the `split` function gets stuck and gets to a point of out of memory. After a lot of debugging i found out that the way the...

This PR provides support for: 1. Alternate parameter symbols (i.e. `$` rather than `?`) 2. Position parameters in the `FilterExp`, i.e. (name = $1, age = $2). There are set...

1. unrecognized key \"$and\" for filtering; 2. unrecognized key \"$between\" for filtering; 3. $or: Error 1241: Operand should contain 1 column(s)

First attempt https://github.com/a8m/rql/pull/10/ The equality fn for the test doesn't like comparing slices because its deep, not sure what we want to do there. Looking at integration testing next.

This allows setting an external naming convention that is different than the db column and will map accordingly. User can query `filter:{someField:5}` and it will be mapped to `where some_field...

I'd like to have a property that is filterable but have the name of the filterable property be different than the name of the column that backs the property. For...