Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

apollo-resolver-fs

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apollo-resolver-fs

A resolver function for Apollo Server which loads serialized data from local files

  • 0.1.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

apollo-resolver-fs

version license build code style

A resolver function for Apollo Server which loads serialized data from local files.

Designed for local testing as a companion to the Google Cloud Storage version apollo-resolver-gcs.

Based on the example server in the Apollo Server 2 Getting Started guide.

Usage

const { ApolloServer } = require('apollo-server')
const { createResolver } = require('apollo-resolver-fs')

const typeDefs = ...

const getBook = createResolver({
  basePath: '/path/to/the/data',
  argsToKey: ({ slug }) => `${slug}.json`,
})

const resolvers = {
  Query: {
    getBook,
  },
}

const server = new ApolloServer({ typeDefs, resolvers })

await server.listen()

In this example, getBook(slug: "harry-potter") returns the deserialized contents of /path/to/the/data/harry-pottern.json.

Running the example server

  1. Run npm start to start the server.
  2. Open https://localhost:4000/. You should see the GraphQL Playground explorer tool.
  3. Run a query:
{
  getBook(slug: "harry-potter") {
    title
    author
  }
}

You should see the result:

{
  "data": {
    "getBook": {
      "title": "Harry Potter and the Chamber of Secrets",
      "author": "J.K. Rowling"
    }
  }
}

License

This project is licensed under the MIT license.

Keywords

FAQs

Package last updated on 01 Jul 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc