如何使用Rest API在Firestore中的复合过滤器内使用多个字段过滤器

时间:2018-10-05 10:00:54

标签: google-apps-script google-cloud-firestore

在Firestore中通过 AND 运算符通过 composite 过滤器使用json有效负载的正确方法

payload ={ "structuredQuery": {
     "where" : {"compositeFilter":{
                                    "op":"AND",
                                    "filters":[
                                       { "fieldFilter":{"field" : {
                                                                  "fieldPath" : "address",
                                                                  },
                                                        "op": "EQUAL",
                                                        "value" : {"stringValue" :"gg"}
                                                       }
                                       }, 
                                      {"fieldFilter": {"field" :{
                                                             "fieldPath" : "name",
                                                                },
                                                       "op": "EQUAL",
                                                       "value" : {"stringValue" :"Abc"}
                                                      }
                                       }],
                                  }
               },
             "from" : [{"collectionId": "Test"}]
   }

}

注意::我正在使用Firestore Rest API

0 个答案:

没有答案