Skip to content

Commit b5fb77f

Browse files
unicodeveloperpeggyrayzis
authored andcommitted
Make the features point bold
1 parent 0e3160e commit b5fb77f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/source/tutorial/schema.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ In our app, we need to provide the following features:
4747

4848
We'll use these features to derive the form of queries and mutations our schema needs.
4949

50-
* First feature: An example of a query for fetching all upcoming rocket launches would look like:
50+
* **First feature:** An example of a query for fetching all upcoming rocket launches would look like:
5151

5252
```js
5353
{
@@ -59,7 +59,7 @@ We'll use these features to derive the form of queries and mutations our schema
5959
}
6060
```
6161

62-
* Second feature: An example of a query for a specific launch would look like:
62+
* **Second feature:** An example of a query for a specific launch would look like:
6363

6464
```js
6565
{
@@ -72,7 +72,7 @@ We'll use these features to derive the form of queries and mutations our schema
7272

7373
An id is passed to the launch query and the details of the 2nd launch is returned. It could be the first or third or any number specified in the query.
7474

75-
From the third feature, we start to deal with users. A query for a signed in user come to mind here and that would look like:
75+
From the **third feature**, we start to deal with users. A query for a signed in user come to mind here and that would look like:
7676

7777
```js
7878
{
@@ -83,7 +83,7 @@ From the third feature, we start to deal with users. A query for a signed in use
8383
}
8484
```
8585

86-
Still focusing on the third feature, a user needing to log in seems more than just a query. In most cases, data changes occur such as a new user profile been created because the user doesn't exist. In this case, we're dealing with a `mutation`, which is a special type of query that modifies data.
86+
Still focusing on the **third feature**, a user needing to log in seems more than just a query. In most cases, data changes occur such as a new user profile been created because the user doesn't exist. In this case, we're dealing with a `mutation`, which is a special type of query that modifies data.
8787

8888
```js
8989
mutation {
@@ -93,7 +93,7 @@ mutation {
9393
}
9494
```
9595

96-
The fourth feature signifies creation of new data. An example of a mutation would look like:
96+
The **fourth feature** signifies creation of new data. An example of a mutation for booking a trip would look like:
9797

9898
```js
9999
mutation bookTrip {
@@ -103,7 +103,7 @@ mutation bookTrip {
103103
}
104104
```
105105

106-
The fifth feature signifies destruction of data. An example of a mutation for this case would look like:
106+
The **fifth feature** signifies destruction of data. An example of a mutation for cancelling a trip would look like:
107107

108108
```js
109109
mutation cancelTrip {

0 commit comments

Comments
 (0)