Skip to content

Commit a6e005f

Browse files
committed
remove _id
1 parent dc32ee4 commit a6e005f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/posts/say-hello-to-gridsome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Here is an example on how to query posts from the GraphQL layer in a page:
2121
<Layout>
2222
<h2>Latest blog posts</h2>
2323
<ul>
24-
<li v-for="edge in $page.allWordPressPost.edges" :key="edge.node._id">
24+
<li v-for="edge in $page.allWordPressPost.edges" :key="edge.node.id">
2525
{{ edge.node.title }}
2626
</li>
2727
</ul>

0 commit comments

Comments
 (0)