查询流表时,如何在 WHERE 子句中使用 attachment.media.type?作为附件兄弟的类型字段始终为空,我已经读过它已被弃用,这就是为什么我要访问附件内部的字段。
附件字段数组的结构为:
"attachment": {
"name": "My Title",
"media": [
{
"href": "http://www.stackoverflow.com",
"alt": "",
"type": "link",
"src": "http://somephotourlhere"
}
]
我想做这样的事情(这不起作用):
WHERE attachment.media["type"] = "link"