@@ -574,15 +574,15 @@ _GraphQL response_ does not include the {data} entry is one in which the
574574The following examples provide guidance on how to deal with specific error
575575cases:
576576
577- #### JSON parsing failure
577+ ** JSON parsing failure**
578578
579579For example a POST request body of ` NONSENSE ` or ` {"query": ` (note: invalid
580580JSON).
581581
582582Requests that the server cannot interpret should result in status code ` 400 `
583583(Bad Request).
584584
585- #### Invalid parameters
585+ ** Invalid parameters**
586586
587587For example a POST request body of ` {"qeury": "{__typename}"} ` (note: typo) or
588588` {"query": "query Q ($i:Int!) { q(i: $i) }", "variables": [7]} ` (note: invalid
@@ -591,32 +591,32 @@ shape for `variables`).
591591A request that does not constitute a well-formed _ GraphQL-over-HTTP request_
592592SHOULD result in status code ` 422 ` (Unprocessable Content).
593593
594- #### Document parsing failure
594+ ** Document parsing failure**
595595
596596For example a POST request body of ` {"query": "{"} ` .
597597
598598Requests where the _ GraphQL document_ cannot be parsed should result in status
599599code ` 400 ` (Bad Request).
600600
601- #### Document validation failure
601+ ** Document validation failure**
602602
603603If a request fails _ GraphQL validation_ , the server SHOULD return a status code
604604of ` 422 ` (Unprocessable Content) without proceeding to GraphQL execution.
605605
606- #### Operation cannot be determined
606+ ** Operation cannot be determined**
607607
608608If [ GetOperation()] ( < https://spec.graphql.org/draft/#GetOperation() > ) raises a
609609_ GraphQL request error_ , the server SHOULD NOT execute the request and SHOULD
610610return a status code of ` 422 ` (Unprocessable Content).
611611
612- #### Variable coercion failure
612+ ** Variable coercion failure**
613613
614614If
615615[ CoerceVariableValues()] ( < https://spec.graphql.org/draft/#CoerceVariableValues() > )
616616raises a _ GraphQL request error_ , the server SHOULD NOT execute the request and
617617SHOULD return a status code of ` 422 ` (Unprocessable Content).
618618
619- #### Field errors encountered during execution
619+ ** Field errors encountered during execution**
620620
621621If the operation is executed and no _ GraphQL request error_ is raised then the
622622server SHOULD respond with a status code of ` 200 ` (Okay). This is the case even
0 commit comments