let postQuery = LCQuery(className: "Post")
postQuery.whereKey("updatedAt", .descending)
postQuery.limit = 10

postQuery可以查询到数据,但是liveQuery 提示如下信息:

------ BEGIN LeanCloud HTTP Response
task: 2
code: 400
error: Response status code was unacceptable: 400.
data: {
    "code": 1,
    "error": "Invalid where."
}
------ END

是我使用方式不对吗?

请提供 SDK 的版本号。

pod 'LeanCloud', '~> 16.5.1
Podfile 是这个版本。

所以到底是where条件不对?还是监听事件不对?