SmartTable

stickyboard-smart-table package provides table component which is supporting CRUD operations using GraphQL.

Pre-requisites

First, you have to install express-graphql and graphql to your StickyBoard project.

$ npm install --save express-graphql graphql

Back-end implementations

GraphQL Schemas and Resolvers

app.js
...

// GraphQL
const graphqlHTTP = require('express-graphql');
const graphqlSchema = require('graphql/MyApp/schemas/schema');
const graphqlRoot = require('graphql/MyApp/resolvers/root');

...

Front-end implementations

Last updated