質問編集履歴
2
コードの誤植を修正しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -6,9 +6,9 @@
|
|
6
6
|
|
7
7
|
Model` Content `が3つ入ってるとします。
|
8
8
|
```
|
9
|
-
await Content.create(
|
9
|
+
await Content.create({name: 'Example1', status: 'public'});
|
10
|
-
await Content.create(
|
10
|
+
await Content.create({name: 'Example2', status: 'public'});
|
11
|
-
await Content.create(
|
11
|
+
await Content.create({name: 'Example3', status: 'draft'});
|
12
12
|
```
|
13
13
|
|
14
14
|
|
1
タイトルを詳細にしました
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
MongoDB | aggregation について
|
1
|
+
MongoDB | aggregation の返り値について
|
body
CHANGED
File without changes
|