Skip to content

Latest commit

 

History

History
33 lines (30 loc) · 830 Bytes

README.md

File metadata and controls

33 lines (30 loc) · 830 Bytes

Persisted formula

Store and load information from rdflib.js formulae (stores/graphs) to indexedDB storage in the browser.

Usage

Persisting data:

import { persist } from 'persisted_formula'
const store = $rdf.graph()
// Write some data into the store
persist(store)
// The data is now stored in indexedDB

Loading data:

import { load } from 'persisted_formula'
const store = $rdf.Graph()
load(store)
// The data is now loaded into the store (if any data was present)

Accessing the raw API:

import PersistentQuadBackend from 'persisted_formula'

const toBeRemoved = [/* Some quads that need deletion */]
new PersistentQuadBackend()
  .connect()
  .then(backend => {
    toBeRemoved.forEach(q => backend.remove(q))
  })