diff options
-rw-r--r-- | graphql.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -117,7 +117,7 @@ specification](https://github.com/jaydenseric/graphql-multipart-request-spec). To limit abuse, we calculate the complexity of your query before executing it, and apply an upper limit. As a general rule of thumb, the complexity is -a function of how many resoruces your request implicates. For example, consider +a function of how many resources your request implicates. For example, consider the following (silly) query: ``` @@ -141,7 +141,7 @@ query { ``` Each field adds 1 to your complexity, unless it represents a relationship like -sshKeys - in which case it is multipled by the number of results you request. +sshKeys - in which case it is multiplied by the number of results you request. The total complexity of your request is capped to 200 by default; some services permit more. @@ -169,7 +169,7 @@ query { ``` The `cursor` field returns an opaque string which can be used to return -additional results, or `null` if there are none. The following request reutrns +additional results, or `null` if there are none. The following request returns another page: ``` @@ -206,7 +206,7 @@ backwards-compatible include: - Adding new optional fields to existing input types The special version `0.0.0` indicates an API which is still undergoing its -initial design work, and provides no stability guarantees whatosever. +initial design work, and provides no stability guarantees whatsoever. Two additional fields are provided by the `version` resolver: `deprecationDate` and `features`. The former, if not null, indicates the date at which a major |