graphql-sequelize-crud

Automatically generate queries and mutations from Sequelize models

Usage no npm install needed!

<script type="module">
  import graphqlSequelizeCrud from 'https://cdn.skypack.dev/graphql-sequelize-crud';
</script>

README

graphql-sequelize-crud

Automatically generate queries and mutations from Sequelize models

Build Status Maintainability Test Coverage

NPM


Demo
See demo/index.ts for demo source code.
The following is automatically generated from a simple Sequelize schema. graph Generated using graphql-viz.

Installation

# Install Peer Dependencies
npm install --save graphql graphql-relay graphql-sequelize-teselagen sequelize
# Install GraphQL-Sequelize-CRUD
npm install --save graphql-sequelize-crud

Usage

See demo/index.ts for demo source code.

Why

  • :white_check_mark: Less error prone development. No more keeping GraphQL in sync with Database fields.
  • :white_check_mark: Don't Repeat Yourself.
  • :white_check_mark: Power of GraphQL and Relay with rapid database development of Sequelize

Features

  • Generated GraphQL API only from Sequelize Models defintitions
    • Relay compatiable GraphQL API
  • Generate Queries
    • READ single
    • READ all
  • Generate Mutations
    • CREATE
    • UPDATE
    • DELETE
  • Custom queries and mutations within Sequelize Models defitions