UNPKG

graphql-paper

Version:

A flexible in-memory store based on a GraphQL Schema

11 lines (9 loc) 250 B
'use strict'; function allDocuments(store) { const all = Object.values(store).reduce((all, documents) => { return [...all, ...documents]; }, []); return all; } exports.allDocuments = allDocuments; //# sourceMappingURL=all-documents.js.map