Skip to content

Commit

Permalink
chore(docs): Update query var in part-7 tutorial (gatsbyjs#33559)
Browse files Browse the repository at this point in the history
  • Loading branch information
shivangisareen authored and wardpeet committed Oct 29, 2021
1 parent 952c2c4 commit 4bd533d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/tutorial/part-7/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,8 @@ Once you have your GraphQL query set up, you can add it to your blog post page t

// highlight-start
export const query = graphql`
query($slug: String) {
mdx(slug: {eq: $slug}) {
query($id: String) {
mdx(id: {eq: $id}) {
body
frontmatter {
title
Expand Down

0 comments on commit 4bd533d

Please sign in to comment.