質問編集履歴

1

説明追記

2020/02/22 18:15

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -8,6 +8,50 @@
8
8
 
9
9
 
10
10
 
11
+ 一応、こちらのページは読んでおります。
12
+
13
+ [https://firebase.google.com/docs/firestore/query-data/order-limit-data?hl=ja](https://firebase.google.com/docs/firestore/query-data/order-limit-data?hl=ja)
14
+
15
+
16
+
17
+
18
+
19
+ # 知りたいこと
20
+
11
21
  0. mapに指定要素が含まれないものを検索したい。
12
22
 
13
23
  1. mapが持つ要素数を知りたい。
24
+
25
+
26
+
27
+ 以下を例としたときに(書式が正しいかは別として)
28
+
29
+ 上記、1,2を満たす検索クエリを探しております。
30
+
31
+ ```
32
+
33
+ collection(A).document(B)とあり、
34
+
35
+
36
+
37
+ doc.id = xxxxxxx0,
38
+
39
+ status {
40
+
41
+ key0: 1234, key1: 567, key2: 890
42
+
43
+ },
44
+
45
+
46
+
47
+ doc.id = xxxxxxx1,
48
+
49
+ status {
50
+
51
+ key0: 1234, key1: 567,
52
+
53
+ }
54
+
55
+
56
+
57
+ ```