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
- How to bypass the rate limit on the back...
Once a month my app has a ton of usage and I always run into the Too many requests 429 error. I am trying to optimize the queues and jobs to manage that, but a...
- [SOLVED] Appwrite Cloud and FRA cloud se...
Can anyone estimate how long this will take to resolve? I am checking status here https://status.appwrite.online/
- How to use Operator.arrayAppend on a rel...
Hi, is it possible to use any operator on a relationship column? I have a One to Many relationship column on a table and I would like to add entries to the colu...