Aliases for Ceramic stream references
npm install @glazed/datamodel
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' })
- Paul Le Cam (@paullecam)
Dual licensed under MIT and Apache 2