sqlalchemy-json-querybuilder
sqlalchemy-json-querybuilder copied to clipboard
JSON to SqlAlchemy ORM query builder.
Hi @suyash248 Firstly, thank you for writing this neat library! I am looking to use this library with some modifications, mostly the interest is with the parsing of the json...
I use sqlalchemy `myaliasedtable = aliased(MyTable)` a lot in my code. Would this library support them?
I was trying to group by a queryset with following stackoverflow answer from sqlalchemy import func Table.query.with_entities(Table.column, func.count(Table.column)).group_by(Table.column).all() But, only the folowing code worked: queryset = search_test.query() queryset = queryset.with_entities(Table.column1,...
Bumps [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) from 1.2.8 to 1.2.19. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...