piccolo
piccolo copied to clipboard
Bug - usage of batch remove output clause.
query = await Something.select(Something.id).output(as_list=True)
usage of batch changes output from:
[id, id, id, ...]
to the default one:
[{'id': id, ...}]
Good catch - hopefully it's quite a simple fix.