SmartTable
stickyboard-smart-table package provides table component which is supporting CRUD operations using GraphQL.
First, you have to install express-graphql and graphql to your StickyBoard project.
$ npm install --save express-graphql graphql
app.js
...
// GraphQL
const graphqlHTTP = require('express-graphql');
const graphqlSchema = require('graphql/MyApp/schemas/schema');
const graphqlRoot = require('graphql/MyApp/resolvers/root');
...
Last modified 3yr ago