I would like to create an attribute of type array but where I can save an array of objects example:
[ { id: 1, type: 'vulnerability', title: 'Vunerability 1', description: 'Descripcion de la vulnerabilidad 1', severity: 'high', status: 'open', date: '2023-04-08', url: 'https://www.google.com' }, { id: 2, type: 'vulnerability', title: 'Vunerability 2', description: 'Descripcion de la vulnerabilidad 2', severity: 'medium', status: 'open', date: '2023-04-08', url: 'https://www.google.com' } ]
Is this possible?
What you're describing is relationships. This should be coming in our next release. You can follow along here: https://github.com/appwrite/appwrite/issues/2735
Oh i see, thanks I hope it comes out soon
Recommended threads
- Update row sheet not loading
After right clicking a row header and click update, the sidebar fails to load (never-ending skeleton)
- DB Relational Table Request
Hi, I'd like to suggest a rewording of the relationships between tables. - Current wording: storeOperatingDays can contain one storeId ...
- Realtime api and labels as permission
in my tables i set labels as permission and real-time capabilities stopped working. Before when i was having "any" role everything was working. Note: user have...