From dfa4caf540fe81ae83cf3b4a88de79b25d98e605 Mon Sep 17 00:00:00 2001 From: frederikhors <41120635+frederikhors@users.noreply.github.com> Date: Sun, 23 Feb 2020 21:33:27 +0100 Subject: [PATCH] Misprint (#37) --- docs/guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide.md b/docs/guide.md index 633246f..ac5c0af 100644 --- a/docs/guide.md +++ b/docs/guide.md @@ -143,7 +143,7 @@ What if I told you Super Graph will fetch all this data with a single SQL query ```graphql query { - products(limit 5, where: { price: { gt: 12 } }) { + products(limit: 5, where: { price: { gt: 12 } }) { id name description @@ -159,7 +159,7 @@ query { } } purchases( - limit 10, + limit: 10, order_by: { created_at: desc } , where: { user_id: { eq: $user_id } } ) {