From 74c5589cb18cac8b51bc862a4cd2a7ddf17eda5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Tue, 28 Feb 2023 15:33:37 +0100 Subject: [PATCH] Fix format typos in graphql guide --- docs/en/features/graphql.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/features/graphql.md b/docs/en/features/graphql.md index 77a7444a1..0a8b4a640 100644 --- a/docs/en/features/graphql.md +++ b/docs/en/features/graphql.md @@ -261,7 +261,7 @@ To retrieve the next page, you have to pass as a parameter the cursor received i ### Accessing several resources in a single request -This query requests information about several models in a single request: `Proposal`,` User`, `Geozone` and` Comment`: +This query requests information about several models in a single request: `Proposal`, `User`, `Geozone` and `Comment`: ``` { @@ -338,7 +338,7 @@ The response will look something like this: ### Example of too complex query -The main risk factor is when multiple collections of resources are requested in the same query. The maximum number of collections that can appear in the same query is limited to 2. The following query requests information from the `users`,` debates` and `proposals` collections, so it will be rejected: +The main risk factor is when multiple collections of resources are requested in the same query. The maximum number of collections that can appear in the same query is limited to 2. The following query requests information from the `users`, `debates` and `proposals` collections, so it will be rejected: ``` { @@ -383,7 +383,7 @@ The response will look something like this: } ``` -However, it is possible to request information belonging to more than two models in a single query, as long as you do not try to access the entire collection. For example, the following query that accesses the `User`,` Proposal` and `Geozone` models is valid: +However, it is possible to request information belonging to more than two models in a single query, as long as you do not try to access the entire collection. For example, the following query that accesses the `User`, `Proposal` and `Geozone` models is valid: ``` {