Skip to content

Commit b0c2210

Browse files
authored
Merge pull request #2659 from Juanescacha/source
[es] Part8c content update
2 parents c6c7fd2 + f3a25f8 commit b0c2210

File tree

2 files changed

+157
-86
lines changed

2 files changed

+157
-86
lines changed

src/content/8/en/part8c.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ In the Apollo Explorer, the header is added to a query like so:
346346

347347
![apollo explorer highlighting headers with authorization and bearer token](../../images/8/24x.png)
348348

349-
Modify the startup of the backend by giving the function that handles the startup [startStandaloneServer](https://www.apollographql.com/docs/apollo-server/api/standalone/) another parameter [context](https://www.apollographql.com /docs/apollo-server/data/context/)
349+
Modify the startup of the backend by giving the function that handles the startup [startStandaloneServer](https://www.apollographql.com/docs/apollo-server/api/standalone/) another parameter [context](https://www.apollographql.com/docs/apollo-server/data/context/)
350350

351351
```js
352352
startStandaloneServer(server, {
@@ -564,7 +564,7 @@ Add user management to your application. Expand the schema like so:
564564
```js
565565
type User {
566566
username: String!
567-
favouriteGenre: String!
567+
favoriteGenre: String!
568568
id: ID!
569569
}
570570

@@ -581,7 +581,7 @@ type Mutation {
581581
// ...
582582
createUser(
583583
username: String!
584-
favouriteGenre: String!
584+
favoriteGenre: String!
585585
): User
586586
login(
587587
username: String!

0 commit comments

Comments
 (0)