QueryBuilderParser icon indicating copy to clipboard operation
QueryBuilderParser copied to clipboard

A simple to use query builder for the jQuery QueryBuilder plugin for use with Laravel.

Results 19 QueryBuilderParser issues
Sort by recently updated
recently updated
newest added

I let my users create their own subqueries which can be used as filters in the query builder. But wheres are not working with values from subqueries so I need...

enhancement
sql

I came across a use-case where `not_equal` does not produce the result I expected because of the following MySQL behavior: https://stackoverflow.com/questions/16186674/mysql-syntax-not-evaluating-not-equal-to-in-presence-of-null Could you consider changing the way the `not_equal` operator...

Just wondering if collections are supported with this package? Or only DB:: queries?

documentation

I have a database-design where the date I want to query is of the datetime-type. But when I try to select all orders that equal to todays date for example,...

sql
mongodb
good first issue

Hello, it would be helpful to be able to create bindings for fields similarly at what is done for JoinSupportingQueryBuilderParser. If I store some values within json columns I can't...

In `Using QueryBuilderParser` you use `DB::table` and `DB::collection`. May I suggest adding the namespace for these. That would make it easier to understand how to integrate with Illuminate, without Laravel....

Checking exists changed to join, since it's insanely much faster (from tens or hundreds of seconds to milliseconds). Checking not exists is as before. Through works with unlimited number of...

See: https://github.com/timgws/QueryBuilderParser/issues/26, it's not yet implemented completely; work in progress but is this the way you like it @timgws? Implement it with the `whereNested()` would be the biggest challenge I...

See the added part in README for further explanation.

hello , I am trying to append a new group of conditions in the background and in this group, I want to use OR and the relation between this group...