0.1.24 • Published 7 years ago

schesign-js-graph-utils v0.1.24

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

Schesign graph utils

Schesign allows you to build and host data designs. Data designs can be accessed through the API as a graph in JSON format. See schesign-js-api for info on retrieving a graph.

This library contains the graph spec and various utilities to programatically generate and manage a schesign graph.

Install

npm install schesign-js-graph-utils --save

Generating a design

  import { Design, ClassNode, PropertyNode } from 'schesign-js-graph-utils'

  const design = new Design()

  const product = new ClassNode({ label: 'Product' })
  const user = new ClassNode({ label: 'User' })
  const shoppingCart = new ClassNode({ label: 'ShoppingCart' })

  const upc = new PropertyNode({ label: 'upc' })

Notes

  • should add a test for recursive nested objects
  • rangeTypes.Text should take more params for types
0.1.24

7 years ago

0.1.23

7 years ago

0.1.22

7 years ago

0.1.21

7 years ago

0.1.20

7 years ago

0.1.19

7 years ago

0.1.18

7 years ago

0.1.17

7 years ago

0.1.16

7 years ago

0.1.15

7 years ago

0.1.14

7 years ago

0.1.13

7 years ago

0.1.12

7 years ago

0.1.11

7 years ago

0.1.10

7 years ago

0.1.9

7 years ago

0.1.8

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago