This is a slice of the schema I'm creating, lets say Schema A.
...
{
"name":"topicList",
"type":"list",
"label":"topicList",
"required":false,
"listType":"node",
"allow":[
"topic"
],
"elasticsearch":{
"type":"nested"
}
}
...
When I retrieve an object of schema A, topic property is an array of {"uuid": "string"} objects.
Is there a possibility to get the full object(otherwise I need to make an extra query to get metadata from those objects).
I know microschema can do this but the objects that I want to store are objects that are inside Topic Schema.
BR