rest-query-parser icon indicating copy to clipboard operation
rest-query-parser copied to clipboard

Query Parser for REST

Results 3 rest-query-parser issues
Sort by recently updated
recently updated
newest added

Adds support for float field type. `myfield:float` --> `float32`

In Postgres substitutions params look like $1. In this library only "?"

Hello! NIce library, very comprehensive functions. I've tried but i got an error from example in Readme. ```go q2, _ := rqp.NewParse(r.URL.Query(), rqp.Validations{ "limit:required": rqp.MinMax(10, 100), // limit must present...