Skip to content

Instantly share code, notes, and snippets.

@GaetanoPiazzolla
Last active January 19, 2022 16:05
Show Gist options
  • Select an option

  • Save GaetanoPiazzolla/b9cde8bc8c7a16d4fcde8acaa8a8b74b to your computer and use it in GitHub Desktop.

Select an option

Save GaetanoPiazzolla/b9cde8bc8c7a16d4fcde8acaa8a8b74b to your computer and use it in GitHub Desktop.
const store = createStore()
.setTables({pets: {fido: {species: 'dog'}}})
.setSchema({
pets: {
species: {type: 'string'},
sold: {type: 'boolean', default: false},
},
});
console.log(store.getTables());
// -> {pets: {fido: {species: 'dog', sold: false}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment