From 6d540b6067b4bfff23873001738a03426f0b3d1a Mon Sep 17 00:00:00 2001 From: tactonbishop Date: Sat, 19 Nov 2022 18:00:05 +0000 Subject: [PATCH] Last Sync: 2022-11-19 18:00:05 --- .../GraphQL/Apollo/Using_arguments_with_Apollo_Client.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Databases/GraphQL/Apollo/Using_arguments_with_Apollo_Client.md b/Databases/GraphQL/Apollo/Using_arguments_with_Apollo_Client.md index 080b872..88c81cc 100644 --- a/Databases/GraphQL/Apollo/Using_arguments_with_Apollo_Client.md +++ b/Databases/GraphQL/Apollo/Using_arguments_with_Apollo_Client.md @@ -281,4 +281,6 @@ const { loading, error, data } = useQuery(GET_TRACK, { }); ``` -Note that in contrast to the [simple example](/Databases/GraphQL/Apollo/Apollo_Client.md#query-constants) +Note that in contrast to the [simple example](/Databases/GraphQL/Apollo/Apollo_Client.md#query-constants) because we are using variables, we have to pass-in an additional object with the query constant that specifies our variables. + +// TODO: Find examples of using more than one variable.