From c3b0dd523ffbe7b552c8d16332161f8bb50c7dd5 Mon Sep 17 00:00:00 2001 From: Daniel Stocks Date: Tue, 5 Nov 2024 20:56:02 -0800 Subject: [PATCH] Docs: Fix fragments tutorial thumbnail typo (#4841) Summary: Hi, I just ran through the tutorial and think I found a small typo. In the [example code](https://github.com/relayjs/relay-examples.git) referenced in the tutorial the field is called `thumbnail` and not `image`. Fixed tutorial example to reflect this. Pull Request resolved: https://github.com/facebook/relay/pull/4841 Reviewed By: lynnshaoyu Differential Revision: D65487327 Pulled By: captbaritone fbshipit-source-id: 151d96a452053566dddcac2e830e6b7a0c245352 --- .../versioned_docs/version-v18.0.0/tutorial/fragments-1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/versioned_docs/version-v18.0.0/tutorial/fragments-1.md b/website/versioned_docs/version-v18.0.0/tutorial/fragments-1.md index 08911741ea24e..1e295c998222a 100644 --- a/website/versioned_docs/version-v18.0.0/tutorial/fragments-1.md +++ b/website/versioned_docs/version-v18.0.0/tutorial/fragments-1.md @@ -25,7 +25,7 @@ const NewsfeedQuery = graphql` url } } - image { + thumbnail { url } } @@ -95,7 +95,7 @@ const StoryFragment = graphql` url } } - image { + thumbnail { url } } @@ -146,7 +146,7 @@ export default function Story({story}: Props) { {data.title} - + );