From a99cb5416aa7932eaf963885e0cfe666a1983ff8 Mon Sep 17 00:00:00 2001 From: ShamarYarde Date: Thu, 26 Sep 2024 00:21:58 -0400 Subject: [PATCH] Update instructions to provide users with clearer instructions Previous instructions were confusing because they didn't reflect what was being seen in GraphiQL. --- docs/docs/tutorial/getting-started/part-5/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorial/getting-started/part-5/index.mdx b/docs/docs/tutorial/getting-started/part-5/index.mdx index 902d581421c6e..ab0f985cd84bc 100644 --- a/docs/docs/tutorial/getting-started/part-5/index.mdx +++ b/docs/docs/tutorial/getting-started/part-5/index.mdx @@ -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 {