我与zapier.com一起在firestore集合和google docs之间建立了连接,其中一部分使StructuredQuery出现400错误,因为他似乎找不到字段
我尝试过多次更改语法,但是似乎不起作用
JSON部分:
{email: null, phonenumber: null}
它向我发送此消息:
{
"orderBy": [{
"id": {
"fieldPath": "title"
},
"direction": "DESCENDING"
}]
}
答案 0 :(得分:0)
对发现有帮助的人的解决方案
{
"orderBy": [{
"field": {
"fieldPath": "id"
},
"direction": "DESCENDING"
}]
}
答案 1 :(得分:0)
尝试一下
{
"orderBy": [
{
"field": {
"fieldPath": "name" //name is the field in you document.
},
"direction": "DESCENDING"
}
]
}