查看freebase的MID「/ m/02r4n63」。問題是如何獲得與此MID相關的所有屬性。
Freebase page這個MID。
我需要從此頁面提取導演,製片人,主演等所有屬性。通過MQL查詢獲取Freebase中特定MID的所有屬性
{
"*": null,
"type": "/film/film",
"id": "/m/02r4n63"
}
上述查詢的輸出嘗試這些疑問給出了相關的只有/film/film
性質,並給出starring list
爲null
。
我嘗試這樣一個
[{
"master_property": {
"name": null,
"id": null
},
"source": {
"mid": "/m/02r4n63"
},
"target": null,
"target_value": null,
"type": "/type/link"
}]
輸出上述查詢的遺漏了/film/starring
屬性。
我也試過
{
"id": "/m/01jrbb",
"/type/reflect/any_master": [{
"id": null,
"link": {
"master_property": {
"id": null,
"name": null
},
"target": null,
"target_value": null
}
}],
"/type/reflect/any_value": [{
"link": {
"master_property": {
"id": null,
"name": null
},
"target": null,
"target_value": null
}
}],
"/type/reflect/any_reverse": [{
"id": null,
"link": {
"master_property": {
"reverse_property": {
"id": null,
"key": null,
"name": null
}
}
}
}]
}
但同樣也錯過了屬性,如Description
。
我想涵蓋所有的屬性。 我已經試過topic search API。這是我想要的輸出。但我希望通過MQL查詢,因爲我也需要屬性的名稱。
幫助受到高度讚賞。
marris:謝謝你的回答。按鍵返回爲「/ film/film/starring」。我想要的是這些屬性的名稱,例如「starring」作爲鍵的名稱而不是「/ film/film/starring」 – Gunjan
我試過這個「昂貴的查詢就像'」*「:[{[{}]}]」It將無法正常工作 – Gunjan
Topic API確實是這樣做的正確方法。如果您需要屬性的標籤/名稱,則可以單獨預取或取出並緩存它們。 –