UNPKG

graphql-paper

Version:

A flexible in-memory store based on a GraphQL Schema

6 lines (5 loc) 253 B
import { GraphQLSchema } from 'graphql'; import { DocumentStore, Document } from '../types'; export declare function createConnectionProxy(schema: GraphQLSchema, store: DocumentStore, document: Document, options?: { writable: boolean; }): Document;