@glazed/datamodel
TypeScript icon, indicating that this package has built-in type declarations

0.3.1 • Public • Published

Glaze DataModel

Aliases for Ceramic stream references

Documentation

Installation

npm install @glazed/datamodel

Example

import { CeramicClient } from '@ceramicnetwork/http-client'
import { DataModel } from '@glazed/datamodel'

// The model aliases associate human-readable names to Ceramic stream IDs or URLs
const modelAliases = {
  schemas: {
    BlogPost: 'ceramic://<schema URL>',
  },
  definitions: {},
  tiles: {
    examplePost: '<stream ID>',
  },
}

const ceramic = new CeramicClient()
const model = new DataModel({ ceramic, model: modelAliases })

// The model exposes simple APIs over the provided model aliases
const blogPostSchemaURL = model.getSchemaURL('BlogPost')

// Individual tiles defined in the model aliases can be loaded using the alias
const examplePost = await model.loadTile('examplePost')

// New tiles can be created using the defined schema aliases
const newPost = await model.createTile('BlogPost', { title: 'new post', text: 'Hello world' })

Maintainers

License

Dual licensed under MIT and Apache 2

Readme

Keywords

Package Sidebar

Install

npm i @glazed/datamodel

Weekly Downloads

501

Version

0.3.1

License

(Apache-2.0 OR MIT)

Unpacked Size

12.3 kB

Total Files

4

Last publish

Collaborators

  • zachferland
  • paul_lecam