Skip to content

0.42.0

Choose a tag to compare

@dantownsend dantownsend released this 01 Sep 06:40
· 726 commits to master since this release

You can now use all_columns at the root. For example:

await Band.select(
    Band.all_columns(),
    Band.manager.all_columns()
).run()

You can also exclude certain columns if you like:

await Band.select(
    Band.all_columns(exclude=[Band.id]),
    Band.manager.all_columns(exclude=[Band.manager.id])
).run()