I try to extract some extra information if my query returns a result.
For example in this query, notable_for returns as "/music/musical_group" and I want to merge another query to extract some information about "/music/musical_group" like its "name"
[{
"id": "/en/pearl_jam",
"mid":None,
"/common/topic/notable_for": [],
"name":[]
}]
But if it does not return anything I dont want my query fails. For example, for the query below it returns a null list for the field "notable_for"
[{
"id": "/music/musical_group",
"mid":None,
"/common/topic/notable_for": [],
"name":[]
}]
How should I envelope my queries for such purpose?