Skip to content

Commit 454ab9e

Browse files
committed
query guide formatting
1 parent 0250a76 commit 454ab9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/v4/queries.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This is the default return structure for paginated results:
4141
}
4242
```
4343

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.
4545

4646
```json
4747
{
@@ -51,7 +51,7 @@ By default, UUID's are used to reference documents in another collection. For ex
5151
}
5252
```
5353

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:
5555

5656
```json
5757
{
@@ -120,7 +120,7 @@ Which gives the following results:
120120
}
121121
```
122122

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:
124124

125125
```json
126126
{

0 commit comments

Comments
 (0)