Zapier Firebase 标记
Zapier Firebase markup
我正在尝试 link 我的 Zapier 帐户到我的 Firebase 帐户,以便在集合中看到新条目时触发。
我一直遇到这个问题,我认为这是因为我正在使用的查询:
"orderBy": [{
"field": {
"fieldPath": "startDateInMilliseconds"
},
"direction": "DESCENDING"
}]
(这是文档中给出的默认示例,填写了我的字段)。我认为问题源于 fieldPath,因为我订购的集合的字段在子类别 "d" 下。
Here's a picture of the data that works with the above query.
He's a picture of the data I'm working with, this one does not work.
Image with the start date field.
没有这个子类别,查询在测试中工作正常,但在这个类别中,查询 returns 出错,说它无法找到任何文档。
有谁知道如何更改查询以适合我的情况?谢谢。
如果您要查询 d
字段映射的 属性,您将需要使用圆点符号来找到它。
"orderBy": [{
"field": {
"fieldPath": "d.dateInMilliseconds"
},
"direction": "DESCENDING"
}]
我正在尝试 link 我的 Zapier 帐户到我的 Firebase 帐户,以便在集合中看到新条目时触发。
我一直遇到这个问题,我认为这是因为我正在使用的查询:
"orderBy": [{
"field": {
"fieldPath": "startDateInMilliseconds"
},
"direction": "DESCENDING"
}]
(这是文档中给出的默认示例,填写了我的字段)。我认为问题源于 fieldPath,因为我订购的集合的字段在子类别 "d" 下。
Here's a picture of the data that works with the above query.
He's a picture of the data I'm working with, this one does not work.
Image with the start date field.
没有这个子类别,查询在测试中工作正常,但在这个类别中,查询 returns 出错,说它无法找到任何文档。
有谁知道如何更改查询以适合我的情况?谢谢。
如果您要查询 d
字段映射的 属性,您将需要使用圆点符号来找到它。
"orderBy": [{
"field": {
"fieldPath": "d.dateInMilliseconds"
},
"direction": "DESCENDING"
}]