From 8b7318d81bad01867fa0e528f5d977e62105279b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Simb=C3=BCrger?= Date: Wed, 10 Jul 2024 09:17:33 +0200 Subject: [PATCH] Update text in 'How to create a new schema in GraphQL' --- .../2024/05/drupal-graphql-how-to-create-a-new-schema/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/post/2024/05/drupal-graphql-how-to-create-a-new-schema/index.md b/content/post/2024/05/drupal-graphql-how-to-create-a-new-schema/index.md index e8f35c1..eccc229 100644 --- a/content/post/2024/05/drupal-graphql-how-to-create-a-new-schema/index.md +++ b/content/post/2024/05/drupal-graphql-how-to-create-a-new-schema/index.md @@ -46,7 +46,7 @@ In the first part we define that it’s a Query, which means that you’re using In the next step you make a connection to a certain schema. In this case to "Movie". And then you create the query itself by defining the data you want to retrieve. -You need to specify data types and when you put the exclamation point on the end that means that you expect only that data type and any other will throw an error. +You need to specify data types. When you put the exclamation point at the end that means you are expecting only that data type and any other will throw an error. This is now your first simple schema.