Skip to content

Latest commit

 

History

History
262 lines (192 loc) · 9.74 KB

File metadata and controls

262 lines (192 loc) · 9.74 KB

A. Appendix: Persisted Documents

This appendix defines an optional extension to the GraphQL-over-HTTP protocol that allows for the usage of "persisted documents".

:: A persisted document is a GraphQL document (strictly: an ExecutableDocument) that has been persisted such that the server may retrieve it based on an identifier indicated in the HTTP request.

This feature can be used as an operation allow-list, as a way of improving the caching of GraphQL operations, or just as a way of reducing the bandwidth consumed from sending the full GraphQL Document to the server on each request.

Typically, support for the persisted document feature is implemented via a "middleware" that sits in front of the GraphQL service and transforms a persisted document request into a GraphQL-over-HTTP request.

:: A persisted operation is a persisted document which contains only one GraphQL operation and all the fragments this operation references (recursively).

Identifying a Document

:: A document identifier is a string-based identifier that uniquely identifies a GraphQL Document.

Note: A document identifier must be unique, otherwise there is a risk of responses confusing the client. Even if the selection sets are identical, even whitespace changes may change the location from which errors are raised, and thus should generate different document identifiers.

A document identifier must either be a prefixed document identifier or a custom document identifier.

Prefixed Document Identifier

:: A prefixed document identifier is a document identifier that contains at least one colon symbol (:). The text before the first colon symbol is called the {prefix}, and the text after it is called the {payload}. The {prefix} identifies the method of identification used. Applications may use their own identification methods by ensuring that the prefix starts x-; otherwise, all prefixes are reserved for reasons of future expansion.

SHA256 Hex Document Identifier

:: A SHA256 hex document identifier is a prefixed document identifier where {prefix} is sha256 and {payload} is 64 hexadecimal characters (in lower case).

The payload of a SHA256 hex document identifier must be produced via the lower-case hexadecimal encoding of the SHA256 hash (as specified in RFC4634) of the Source Text of the GraphQL Document (as specified in the Language section of the GraphQL specification).

A service which accepts a persisted document request SHOULD support the SHA256 hex document identifier for compatibility.

Example

The following GraphQL query (with no trailing newline):

query ($id: ID!) {
  user(id: $id) {
    name
  }
}

Would have the following SHA256 hex document identifier:

sha256:7dba4bd717b41f10434822356a93c32b1fb4907b983e854300ad839f84cdcd6e

Whereas the same query with all optional whitespace omitted:

query($id:ID!){user(id:$id){name}}

Would have this different SHA256 hex document identifier:

sha256:71f7dc5758652baac68e4a10c50be732b741c892ade2883a99358f52b555286b

Custom Document Identifier

:: A custom document identifier is a document identifier that contains no colon symbols (:). The meaning of a custom document identifier is implementation specific.

Note: A 32 character hexadecimal custom document identifier is likely to be an MD5 hash of the GraphQL document, as traditionally used by Relay.

Persisting a Document

A client utilizing persisted documents MUST generate a document identifier for each GraphQL Document it wishes to issue to the server, and SHOULD ensure that the server can retrieve this GraphQL Document given the document identifier.

Note: The method through which the client and server achieve this is implementation specific. Typically persisted documents are stored into some kind of trusted shared key-value store at client build time (either directly, or indirectly via an authenticated request to the server) such that the server may retrieve them given the identifier at request time. It is generally good practice for the client to issue both the GraphQL Document and the document identifier to the server; the server should then regenerate the document identifier from the GraphQL Document independently, and check that the identifiers match before storing the Document. An alternative approach has the client issue the GraphQL Document to the server, and the server returns an arbitrary custom document identifier that the client should incorporate into its bundle.

When using persisted documents as an operation allowlist, the client MUST persist the documents it uses ahead of time in a secure manner (preventing untrusted third parties from adding their own persisted document) such that the server will be able to retrieve the identified document within a persisted document request and know that it is trusted.

Persisted Document Request

A server MAY accept a persisted document request via GET or POST.

Persisted Document Request Parameters

:: A persisted document request is an HTTP request that encodes the following parameters in one of the manners described in this specification:

  • {documentId} - (Required, string): The string identifier for the Document.
  • {operationName} - (Optional, string): The name of the Operation in the identified Document to execute.
  • {variables} - (Optional, map): Values for any Variables defined by the Operation.
  • {extensions} - (Optional, map): This entry is reserved for implementors to extend the protocol however they see fit.

GET

For a persisted document request using HTTP GET, parameters SHOULD be provided in the query component of the request URL, encoded in the application/x-www-form-urlencoded format as specified by the WhatWG URLSearchParams class.

The {documentId} parameter must be a string document identifier.

The {operationName} parameter, if present, must be a string.

Each of the {variables} and {extensions} parameters, if used, MUST be encoded as a JSON string.

Setting the value of the {operationName} parameter to the empty string is equivalent to omitting the {operationName} parameter.

A client MAY provide the persisted document request parameters in another way if the server supports that.

Note: A common alternative pattern is to use a dedicated URL for each persisted operation (e.g. https://example.com/graphql/sha256:71f7dc5758652baac68e4a10c50be732b741c892ade2883a99358f52b555286b).

GET requests MUST NOT be used for executing mutation operations. If a mutation operation is indicated by the value of {operationName} and the GraphQL Document identified by {documentId}, the server MUST respond with error status code 405 (Method Not Allowed) and halt execution. This restriction is necessary to conform with the long-established semantics of safe methods within HTTP.

Canonical Parameters

Parameters SHOULD be provided in the order given in the list above, any optional parameters which have no value SHOULD be omitted, and parameters encoded as JSON string SHOULD use the most compressed form (with all optional whitespace omitted). A server MAY reject requests where this is not adhered to.

Note: Ensuring that parameters are in their canonical form helps improve cache hit ratios.

Example

Executing the GraphQL Document identified by "sha256:71f7dc5758652baac68e4a10c50be732b741c892ade2883a99358f52b555286b" with the following query variables:

{"id":"QVBJcy5ndXJ1"}

This request could be sent via an HTTP GET as follows:

https://example.com/graphql?documentId=sha256:71f7dc5758652baac68e4a10c50be732b741c892ade2883a99358f52b555286b&variables=%7B%22id%22%3A%22QVBJcy5ndXJ1%22%7D

POST

For a persisted document request using HTTP POST, the request MUST have a body which contains values of the persisted document request parameters encoded in one of the officially recognized GraphQL media types, or another media type supported by the server.

JSON Encoding

When encoded in JSON, a persisted document request is encoded as a JSON object (map), with the properties specified by the persisted document request:

  • {documentId} - the string identifier for the Document
  • {operationName} - an optional string
  • {variables} - an optional object (map), the keys of which are the variable names and the values of which are the variable values
  • {extensions} - an optional object (map)

Example

If we wanted to execute the following GraphQL query:

query ($id: ID!) {
  user(id: $id) {
    name
  }
}

With the following query variables:

{
  "id": "QVBJcy5ndXJ1"
}

This request could be sent via an HTTP POST to the relevant URL using the JSON encoding with the headers:

Content-Type: application/json
Accept: application/graphql-response+json

And the body:

{
  "documentId": "sha256:7dba4bd717b41f10434822356a93c32b1fb4907b983e854300ad839f84cdcd6e",
  "variables": {
    "id": "QVBJcy5ndXJ1"
  }
}

Persisted Document Response

When a server that implements persisted documents receives a well-formed persisted document request, it must return a well‐formed GraphQL response.

The server should retrieve the GraphQL Document identified by the {documentId} parameter. If the server fails to retrieve the document, it MUST respond with a well-formed GraphQL response consisting of a single error. Otherwise, it should construct a GraphQL-over-HTTP request using this document and the other parameters of the persisted document request, and then follow the details in the Response section.