When using a nested array with Piccolo Admin, for example:
from piccolo.table import Table
from piccolo.columns import Array, BigInt
class MyTable(Table):
my_column = Array(Array(BigInt()))
This error is raised by FastAPI:
AssertionError: Param: my_column can only be a request body, using Body()
I'm not sure how hard it will be to solve, but it would be nice to have basic nested array support.
Related to piccolo-orm/piccolo#936
When using a nested array with Piccolo Admin, for example:
This error is raised by FastAPI:
I'm not sure how hard it will be to solve, but it would be nice to have basic nested array support.
Related to piccolo-orm/piccolo#936