Socket
Socket
Sign inDemoInstall

@valueflows/vf-graphql

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@valueflows/vf-graphql

Reference GraphQL implementation of the ValueFlows spec


Version published
Weekly downloads
26
increased by2500%
Maintainers
2
Weekly downloads
 
Created
Source

vf-graphql

Reference GraphQL implementation of the ValueFlows spec

  • Implementing
  • Development setup
  • Contributing
  • License

This is to help synchronize the projects using VF for a graphql interface between client and server. It includes the VF specification, plus recommended vocabulary specification not part of the rdf-based VF spec but needed for all VF based implementations of economic software (for example Agent, Person, Organization, note, image). It also includes recommended inverse relationship naming, which is particularly useful in graphql implementations.

Implementing

To implement a system gateway compatible with the ValueFlows spec, you will need to define the following:

  • An implementation object for resolving all relationship fields, to be passed to makeExecutableSchema along with the schema definition exported by this module
  • Scalar type resolvers for the ISO8601 DateTime & DateInterval types

For a more detailed example, see the project in ./mock-server/.

Development setup

Prerequisites

  • If you don't have Yarn- npm i -g yarn using the version of node you plan on developing this project against (for recommended, see .nvmrc). You can setup your modules manually using npm link if you prefer, but Yarn's workspaces feature will save you a lot of time.

Initialising for development

  • Run yarn from the top level folder of this repository to install and wire up all dependencies.

Available commands

See scripts in package.json for the available commands. For quickly spinning up the full system, you should usually be able to simply run npm start. This will load up:

  • Test runner for the schemas. It is recommended when authoring schemas to save often and watch the test output, as no line number information is available when debugging.
  • A GraphiQL query UI at http://localhost:3000/graphql which you can use to test queries against a mock GraphQL API derived from the schema.
  • A GraphQL Voyager UI at http://localhost:3000/viewer which shows an interactive visual representation useful for exploring the schema.

Contributing

The recommended way to contribute to this repo is via the npm run dev:schema command (also run as part of npm start). This will watch the code for changes and build & run tests every time you save a file. It's best to do it this way as the errors from the GraphQL parser can be hard to track down- more frequent feedback means you will catch any errors sooner.

Directory structure

The lib/ directory contains all source of the reference schema & validation helpers:

  • index.js is the main entrypoint to the module, used by other packages wishing to validate schemas against the spec.
  • typeDefs.js contains only the schemas themselves (as strings); packages wishing to implement APIs using the reference spec can reference this file instead of the main module entrypoint to skip some initialisation logic only needed for validation.
  • tests/ contains tests for ensuring the schemas compile successfully.
  • schemas/ contains the actual GraphQL schema definition files. These are the files you should edit.
  • build/ and index.d.ts are generated from the schema files, using helper code in lib/scripts/.

Publishing to NPM

  • You will need to be given access to the VF NPM org in order to update the module on the registry. You can request access in https://gitter.im/valueflows/welcome
  • Bump the version in lib/package.json & commit to the repository
  • Run npm run publish from this directory
  • Tag the current release in git and push the tag to origin

License

Released under an Apache 2.0 license.

Keywords

FAQs

Package last updated on 12 Jan 2020

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