こんにちは、辞書のリストであるフィールドからアイテムを読み取り/追加/変更/削除するための回避策はありますか? 現在 Eve でサポートされていないことはわかっているので、推奨事項はありますか?
より具体的には、これが私のスキーマです。
companies = {
'employees': {
'type': 'list',
'schema': {
'type': 'dict',
'schema': {
'user': {
'type': 'objectid',
'required': True,
'data_relation': {
'resource': 'users',
'field': '_id',
},
},
'role': {
'type': 'objectid',
'required': True,
'data_relation': {
'resource': 'company_roles',
'field': '_id',
},
},
},
},
}
}
従業員に対して CRUD 操作を実行できるようにしたいと考えています。ヒントはありますか?