'how to create mongodb composite schema in prisma using python?

File "/Users/akaash/opt/miniconda3/lib/python3.8/site-packages/prisma/generato
r/models.py", line 861, in check_supported_scalar_list_type
Cannot use b_boxes as a list yet; Please
create a feature request at https://github.com/RobertCraigie/prisma-client-py/i
ssues/new

I'm getting the above error while trying the below code. Can anyone help me with this?

model results {

  id          String    @id @default(auto()) @map("_id") @db.ObjectId
  boundingbox b_boxes[]
  Name        String[]
  Confidence  Float[]
}

type b_boxes {

  width  Int
  height Int
  left   Int
  top    Int

}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source