StickyBoard
Search…
Introduction
abstract
Core Concepts
Architecture
Getting Started
create-stickyboard-app
Install
Default Settings
Back-end Customization
Front-end Customization
Build & Run
Dockerize
Deploy
Components
Recharts
Highcharts
Table
SmartTable
Number
OpenWeatherMap
YahooWeather
OpenLayers
contribution
Develop Your Own Component
Powered By
GitBook
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.
1
$ npm install --save express-graphql graphql
Copied!
Back-end implementations
GraphQL Schemas and Resolvers
app.js
1
...
2
3
// GraphQL
4
const
graphqlHTTP
=
require
(
'express-graphql'
);
5
const
graphqlSchema
=
require
(
'graphql/MyApp/schemas/schema'
);
6
const
graphqlRoot
=
require
(
'graphql/MyApp/resolvers/root'
);
7
8
...
Copied!
Front-end implementations
GitHub - soaple/stickyboard-smart-table: Smart table component for StickyBoard
GitHub
Components - Previous
Table
Next - Components
Number
Last modified
2yr ago
Copy link
Contents
Pre-requisites
Back-end implementations
GraphQL Schemas and Resolvers
Front-end implementations