From 35959106fdfb699c9a6bfc876d10518d99902b4a Mon Sep 17 00:00:00 2001 From: Tonye Jack <jtonye@ymail.com> Date: Wed, 16 Jun 2021 21:09:19 -0400 Subject: [PATCH] Fix usage of underscores in graphQL queries (#59) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ce1b391..ff6309b 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Fetching all the ingredients with the related category: ```graphql { - all_ingredients { + allIngredients { id name category { @@ -82,7 +82,7 @@ Fetching all the categories with the related ingredients: ```graphql { - all_categories { + allCategories { id name ingredients { -- GitLab