You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/v4/queries.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ This is the default return structure for paginated results:
41
41
}
42
42
```
43
43
44
-
By default, UUID's are used to reference documents in another collection. For example, the launches endpoint has an array of UUID's named `payloads` that references a payload in the payloads endpoint.
44
+
By default, UUID's are used to reference documents in another collection. For example, the `launches` endpoint has an array of UUID's named `payloads` that references a payload in the payloads endpoint.
45
45
46
46
```json
47
47
{
@@ -51,7 +51,7 @@ By default, UUID's are used to reference documents in another collection. For ex
51
51
}
52
52
```
53
53
54
-
This allows us to populate or replace the UUID with the payload that it references. In this example, to populate payloads with the corresponding document, the body would look like the following:
54
+
This allows us to populate or replace the UUID with the payload that it references. In this example, to populate `payloads` with the corresponding document, the body would look like the following:
55
55
56
56
```json
57
57
{
@@ -120,7 +120,7 @@ Which gives the following results:
120
120
}
121
121
```
122
122
123
-
Populate also allows you to select specific fields to return. For example, if you were only interested in the payload name, you could use the following:
123
+
Populate also allows you to select specific fields to return. For example, if you were only interested in the payload `name`, you could use the following:
0 commit comments