From cf4aaf5e9bd05ef75792d5ef8bf796b871083854 Mon Sep 17 00:00:00 2001 From: Alexander Rose Date: Mon, 22 Apr 2024 11:31:28 +0200 Subject: [PATCH] fix wording --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6136c00d..6dc83af6 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ var personName = graphQLResponse.Data.person.Name; > [!IMPORTANT] > Note that the field in the GraphQL response which gets deserialized into the response object is the `data` field. > -> A common mistake is to try to directly use the `PersonType` object as response type (because thats the *thing* you actually want to query), but the returned response object contains a property `person` containing a `PersonType` object (like the `ResponseType` modelled above). +> A common mistake is to try to directly use the `PersonType` class as response type (because thats the *thing* you actually want to query), but the returned response object contains a property `person` containing a `PersonType` object (like the `ResponseType` modelled above). ### Use Subscriptions