graphql-norm
Normalization and denormalization of GraphQL responses
How to install
npm install graphql-norm --save
Introduction
Responses from graphql servers may contain the same logical object several times. Consider for example a response from a blog server that contains a person object both as an author and a commenter. Both person objects have the same ID and are of the same GraphQL type so they are logically the same object. However, since they appear in two different parts of the response they need to be duplicated. When we want to store several GraphQL responsese the problem of duplication amplifies, as many respones may contain the same object. When we later want to update an object, it can be difficult to find all the places where the update needs to happen because there are multiple copies of the same logical object. This package solves these problems by using normalization and denormalization.
A basic description of normalization (in this context) is that it takes a tree and flattens it to a map where each object will be assigned an unique ID which is used as the key in the map. Any references that an object holds to other objects will be exhanged to an ID instead of an object reference. The process of denormalizaton goes the other way around, starting with a map and producing a tree. The normalizr library does a good job of explaining this. In fact, this package is very similar to normalizr, but it was specifically designed to work with GraphQL so it does not require hand-coded normalization schemas. Instead it uses GraphQL queries to determine how to normalize and denormalize the data.
Normalization and denormalization is useful for a number of scenarios but the main usage is probably to store and update a client-side GraphQL cache without any duplication problems. For example, Relay and Apollo use this approach for their caches. So the main use-case for this library is probably to build your own client-side cache where you get full control of the caching without loosing the benefit of normalization.
Goal
The goal of the package is only to perform normalization and denormalization of graphql responses. Providing a complete caching solution is an explicit non-goal of this package. However this package can be a building block in a normalized GraphQL caching solution.
Features
- Full GraphQL syntax support (including variables, alias, @skip, @include, union types etc.)
- Turn any graphql response into a flat (normalized) object map
- Build a response for any grapqhl query from the normalized object map (denormalize)
- Merge normalized object maps to build a larger map (eg. a cache)
- Optimized for run-time speed
Example usage
You can also run the below example live at stackblitz.
import { normalize, denormalize, merge } from "graphql-norm";
import { request } from "graphql-request";
import { parse } from "graphql";
let cache = {};
const query = `
query GetCountry($code: String!) {
country(code: $code) {
__typename code name
continent {__typename code name}
languages {__typename code name}
}
}`;
const queryDoc = parse(query);
const queryVars = { code: "SE" };
request("https://countries.trevorblades.com/graphql", query, queryVars).then(
data => {
console.log("data", JSON.stringify(data));
const getKey = obj =>
obj.code && obj.__typename && `${obj.__typename}:${obj.code}`;
const normMap = normalize(queryDoc, queryVars, data, getKey);
console.log("normMap", JSON.stringify(normMap));
cache = merge(cache, normMap);
const query2 = `
query GetCountry2($code: String!) {
country(code: $code) {__typename code name}
}`;
const query2Doc = parse(query2);
const denormResult = denormalize(query2Doc, { code: "SE" }, cache);
const setToJSON = (k, v) => (v instanceof Set ? Array.from(v) : v);
console.log("denormResult", JSON.stringify(denormResult, setToJSON));
}
);
API
normalize()
const normMap = normalize(query, variables, data, getObjectId, resolveType);
The normalize() function takes a GraphQL query with associated variables, and data from a GraphQL response. From those inputs it produces a normalized object map which is returned as a plain JS object. Each field in the query becomes a field in the normalized version of the object. If the field has variables they are included in the field name to make them unique. If the object has nested child objects they are exhanged for the ID of the nested object, and the nested objects becomes part of the normalized object map. This happens recursively until there are no nested objects left.
Parameters
- query: Graphql query parsed into an AST.
- variables: Variables associated with the query. This is the exact same object that was used when querying the graphql server.
- data: Data returned by a GraphQL server (the data property of the raw response).
- getObjectId: An optional callback function that is called each time an object is normalized. It is passed the object as a single parameter and should return the ID of that object. If this parameter is omitted, a default function that looks for
__typename
and id
and combines them into a __typename:id
string will be used. If this function returns a falsy value (eg. undefined), a fallback ID will be used. Some objects may be value objects that have no ID and in that case it is OK to return falsy. The fallback ID will use the closest parent with an ID as a base (or ROOT_QUERY if there is no parent with ID). - resolveType: An optional callback function that is called each time a fragment is encountered. To check if a fragment should apply, we need to know the type of the object. For example an inline fragment
... on Bar
should only apply to objects of type Bar
. This becomes extra useful when graphql union types are used. The default implementation will look for __typename
of the object.
Return value
This function returns an object that is a map of keys and normalized objects.
denormalize()
const denormResult = denormalize(query, variables, normMap);
The denormalize() function takes a GraphQL query with associated variables, and a normalized object map (as returned by normalize()). From those inputs it produces the data for a GraphQL JSON response. Note that the GraphQL query can be any query, it does not have to be one that was previously normalized. If the response cannot be fully created from the normalized object map then undefined
will be returned.
Parameters
- query: Graphql query parsed into an AST.
- variables: Variables associated with the query. This is the exact same object that was used when querying the graphql server.
- normMap: The map of normalized objects as returned by
normalize()
and/or merge()
. - resolveType: See parameter with same name on
normalize()
above.
Return value
This function returns an object with information about the denormalization result. The following properties are available on the returned object:
- data: This is the data for the query as it would have been returned from a GraphQL serverl, or
undefined
is the query could not be completely fulfilled from the data in normMap
. - fields: An object where each property is an normlized object key, and the value is a
Set
of used fields. This can be useful for tracking which key/fields will affect this query data. If an tuple of this object and the data is stored, each time a new normalized result is merged a cache we can check if the new normalized data being merged contains any of the keys/fields of this query then it is affected by the merge, otherwise not. This is similar to the approach used by relay for tracking changes. If the query could not be fulfilled from cache, data will be undefined
and fields
will contain the first field that could not be resolved.
merge()
const normMap = merge(normMap, newNormMap);
When you normalize the response of a query you probably want to merge the resulting normalized object map into a another, large normalized object map that is held by your application. Since the normalized object map is just a JS object you can do this merge any way you want but the merge()
function is provided an optimized convenience to do the merging.
Parameters
- normMap: The normalized map to merge into. This object is not mutated.
- newNormMap: The normalized map to merge into the first map. Any overlapping keys in the first map is overwritten by this map. This object is not mutated.
Return value
This function returns an object which is the merged normalized map. It has the same structure as the passed in objects but the keys/values from both of them.
Related packages
Typescript support
This project is developed using typescript and typescript types are distributed with the package.
How to develop
Node version >=12.6.0 is needed for development.
To execute the tests run yarn test
.
How to publish
yarn version --patch
yarn version --minor
yarn version --major