Skip to content

Commit

Permalink
typos (#4532)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: #4532

Reviewed By: tyao1

Differential Revision: D51532316

Pulled By: monicatang

fbshipit-source-id: 397cc6774e10b61ab61fe31c0607a40cd536d32a
  • Loading branch information
michael-letcher authored and facebook-github-bot committed Nov 22, 2023
1 parent bb0a6f5 commit e854fa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/versioned_docs/version-v16.0.0/tutorial/graphql.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GraphQL and Relay

This section is an overview to situate Relay in relation to GraphQL, React, and the other parts of the stack. Don’t worry about understanding every detail, just try to get the gist and the proceed to the next section to start working with code. Much more specifics will be explained as we go through working examples throughout the tutorial.
This section is an overview to situate Relay in relation to GraphQL, React, and the other parts of the stack. Don’t worry about understanding every detail, just try to get the gist and then proceed to the next section to start working with code. Much more specifics will be explained as we go through working examples throughout the tutorial.

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
Expand Down Expand Up @@ -88,7 +88,7 @@ query {
</TabItem>
</Tabs>

This means we can retrieve information about a whole panoply of objects all in one query — in others words, you can efficiently get all the data for a screen in a single request instead of sending many requests one after the other. But you achieve this without writing and maintaining a separate endpoint for each screen in your UI.
This means we can retrieve information about a whole panoply of objects all in one query — in other words, you can efficiently get all the data for a screen in a single request instead of sending many requests one after the other. But you achieve this without writing and maintaining a separate endpoint for each screen in your UI.

Instead, your GraphQL server provides a *schema*, which describes what kinds of nodes there are, how they’re connected, and what information each node contains. Then, you pick and choose from this schema to select the information you want.

Expand Down

0 comments on commit e854fa0

Please sign in to comment.