質問編集履歴
2
何を実現したいか?を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,7 +38,31 @@
|
|
38
38
|
|
39
39
|
|
40
40
|
|
41
|
-
このエラーの原因は何でしょうか?
|
41
|
+
**このエラーの原因は何でしょうか?**
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
#何を実現したいか?
|
46
|
+
|
47
|
+
[Firebase 要素の数をカウントするなら、最初からこの方法でいきましょう!(Cloud Functions)](https://qiita.com/kokogento/items/e4bc6eac6b8501ebcab7)
|
48
|
+
|
49
|
+
:point_up:上記の記事を参考に、Firestoreのドキュメントの数をカウントしています。
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
`users/{userId}/events/{eventId}`のドキュメントに変化があった場合、Firestore内のドキュメントフィールド2箇所にカウントを記録します。
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
```typescript
|
58
|
+
|
59
|
+
exports.monthCountEvents = functions.region('asia-northeast1').firestore
|
60
|
+
|
61
|
+
.document('users/{userId}/events/{eventId}')
|
62
|
+
|
63
|
+
.onWrite((change, context) => {
|
64
|
+
|
65
|
+
```
|
42
66
|
|
43
67
|
|
44
68
|
|
1
タグを追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|