如何获取我在firestore中具有的表单部分的字段名称,以运行json请求

时间:2019-02-07 21:19:41

标签: json google-cloud-firestore zapier

我与zapier.com一起在firestore集合和google docs之间建立了连接,其中一部分使StructuredQuery出现400错误,因为他似乎找不到字段

我尝试过多次更改语法,但是似乎不起作用

JSON部分:

{email: null, phonenumber: null}

它向我发送此消息:

{
 "orderBy": [{
        "id": {
         "fieldPath": "title"
        },
        "direction": "DESCENDING"
    }]
}

the firebase part that i try to reach

2 个答案:

答案 0 :(得分:0)

对发现有帮助的人的解决方案

{
 "orderBy": [{
         "field": {    
                    "fieldPath": "id"
                },
        "direction": "DESCENDING"
    }]
}

答案 1 :(得分:0)

尝试一下

{
  "orderBy": [
    {
      "field": {
        "fieldPath": "name" //name is the field in you document.
      },
      "direction": "DESCENDING"
    }
  ]
}