-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfirestore.indexes.json
46 lines (46 loc) · 1.18 KB
/
firestore.indexes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"indexes": [
{
"collectionGroup": "chat_messages",
"queryScope": "COLLECTION",
"fields": [
{
"fieldPath": "chat",
"order": "ASCENDING"
},
{
"fieldPath": "timestamp",
"order": "DESCENDING"
}
]
},
{
"collectionGroup": "chats",
"queryScope": "COLLECTION",
"fields": [
{
"fieldPath": "users",
"arrayConfig": "CONTAINS"
},
{
"fieldPath": "last_message_time",
"order": "DESCENDING"
}
]
},
{
"collectionGroup": "participants",
"queryScope": "COLLECTION",
"fields": [
{
"fieldPath": "activityRef",
"order": "ASCENDING"
},
{
"fieldPath": "created_at",
"order": "DESCENDING"
}
]
}
]
}