New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@gramps/data-source-base

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gramps/data-source-base

Base modules for a GrAMPS GraphQL data source.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

GrAMPS · An easier way to manage the data sources powering your GraphQL server

GrAMPS GraphQL Data Source Base

Build Status Maintainability Test Coverage npm version Greenkeeper badge

This is a minimal example and boilerplate for a GrAMPS data source. Inside, you’ll find:

  • Context — an object with methods to retrieve/modify data from the data source (e.g. a CRUD wrapper)
  • Schema — type definitions for GraphQL to interpret the data (see the GraphQL docs on schemas)
  • Resolvers — functions to map the results of calls to model methods to the schema
  • Mock Resolvers — mock functions for offline development

Each file contains a TODO comment explaining the changes you’ll need to make to create a working data source.

The goal of this repo is to provide enough code to allow a working example of a data source and its related tests, but to limit how much boilerplate needs to be edited to get your own data source implemented.

Code Quality and Continuous Integration

To help ensure a reliable, easy-to-maintain data source, this example also includes:

  • Configuration for Travis CI (for automated testing) and Code Climate (for quality analysis)
  • Starts you off right with test coverage at 💯
  • Provides testing helpers for common resolver testing patterns
  • Comes with docs! https://ibm.biz/graphql-data-source

Quickstart

NOTE: Replace all instances of YOUR_DATA_SOURCE_NAME with the actual name you want to use (e.g. data-source-companyname-datatype).

# Get a copy of the data source
npx degit gramps-graphql/data-source-base data-source-YOUR_DATA_SOURCE_NAME

# Move into it
cd data-source-YOUR_DATA_SOURCE_NAME/

# IMPORTANT: Make sure to edit the name, description, contributors, and 
# repository fields in package.json

# Install dependencies
yarn

# Start the dev server
yarn dev

You'll see a message with URLs for the GraphQL gateway and the GraphQL Playground. Open the Playground link (usually http://localhost:8080/playground if you don’t already have something running on port 8080), then run a query:

{
  getById(id: 123) {
    id
    name
    lucky_numbers
  }
}

To Develop with Mock Data

Start the app with the following command:

# Start the gateway with mock data
yarn dev --mock

Notes for Developers

Currently, there is no watch capability (PRs welcome!), so the service needs to be stopped (control + C) and restarted (yarn dev) to reflect new changes to the data source.

Keywords

FAQs

Package last updated on 19 Dec 2017

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