我有一个class Recommendation
, 它有一个 tags
列(类型是 relation
),关联到了 Tag
class。
我想统计一下所有使用过 objectId
为 565eb26360b20de5ec7cb656
这个Tag
的所有Recommendation
对象。
按照 CQL文档 使用 releated <key> to <pointer>
。
CQL 如下:
select * from Recommendation where related tags to pointer('Tag','565eb26360b20de5ec7cb656')
执行结果:
Error: missing EOF at 'tags' near 'related'; line 1 pos 44
各位有遇到这个问题吗?