query-builder
Here are 642 public repositories matching this topic...
-
Updated
Jan 19, 2022 - C#
-
Updated
Jan 5, 2019 - JavaScript
-
Updated
Oct 28, 2018 - PHP
Describe the bug
I created a component in QueryBuilder.tsx by taking the example from the README with some little cleanup. It all worked except the CSS import causes an issue. Is there a solution that is supported in tsx or a hosted css file that can be used?
./node_modules/react-awesome-query-builder/lib/css/styles.css:1
.qb-drag-handler, .qb-draggable, .query-builder {
^
Synt
-
Updated
Jan 27, 2022 - PHP
-
Updated
Jan 25, 2022 - PHP
-
Updated
Jan 25, 2022 - TypeScript
-
Updated
Dec 10, 2021 - PHP
It would be nice if there was a new clause which can be added to queries called callback.
For example:
def callback_handler(success, value):
if success:
print(f'The query was successful and returned {value}')
else:
print("The query failed")
Band.select().callback(callback_handler).run_sync()The callback could be a function or coroutine, wh
-
Updated
May 11, 2021 - JavaScript
-
Updated
Jan 29, 2022 - C#
-
Updated
Apr 13, 2020 - Java
-
Updated
Jan 24, 2022 - JavaScript
-
Updated
Jan 31, 2022 - TypeScript
The .returning() function currently only supports strings (which should be the target table's column names). In reality they can accept any expression and (returning) query.
This should be supported:
insert into bar (val) values (123) returning (select count(*) from bar), id, val || 'test'which would equate to something like:
db.insertInto(bar).values({ val: 123 })-
Updated
Jan 21, 2022 - PHP
-
Updated
Dec 23, 2021 - JavaScript
-
Updated
Jan 25, 2022 - PHP
-
Updated
Jan 17, 2022 - C#
-
Updated
Jan 5, 2022 - PHP
-
Updated
Jan 14, 2022 - JavaScript
-
Updated
Nov 9, 2021 - Go
-
Updated
Jan 5, 2022 - PHP
-
Updated
Jan 30, 2022 - Rust
-
Updated
Aug 11, 2021 - JavaScript
-
Updated
Jan 29, 2022 - C#
Improve this page
Add a description, image, and links to the query-builder topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the query-builder topic, visit your repo's landing page and select "manage topics."
Diesel currently supports the postgres json and jsonb types. We do not provide built-in support for various operators available for these types. This is a tracking issue for adding support for these operators.
The general strategy for adding support for new operators is as following: