I can’t find an answer for this right now.
I’m creating a dropdown field I’d like to populate with the id’s of another query. So when I create a new post, it can link to the original ID.
I’m using the JSON Form Schema.
"companies": { "type": "string", "title": "Company", "enum": {{getCompaniesId.data.id}}, "enumNames": {{getCompaniesId.data.name}} }
So in this example above getCompaniesId
returns an array of objects.
Anyway I can do this with retool?
I think i’m close…
{{_.map(getCompanies.data, '_id')}}
Well… I think that should work. Confused
DOES WORK! took a page refresh though.