Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update instructions to provide users with clearer instructions #39111

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/tutorial/getting-started/part-5/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ query MyQuery {
4. You might notice that your posts aren't listed in order. Most blog sites list their posts in reverse-chronological order, so that the newest posts are listed first. You can sort the data nodes in your response by using the `sort` argument on the `allMdx` field.

- In the Explorer pane, toggle the `sort` dropdown underneath the `allMdx` field.
- Under `sort`, check the `frontmatter` argument, and use the dropdown to select `DESC`. This will sort the nodes in descending order, so that the newest posts come first.
- Under `sort`, toggle the `frontmatter` argument, check the `date` argument under the `frontmatter` argument, and use the `date` dropdown to select `DESC`. This will sort the nodes in descending order, so that the newest posts come first.

```graphql
query MyQuery {
Expand Down