sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
11 lines • 332 B
JavaScript
import { DataFactory } from 'rdf-data-factory';
import { Model } from 'rdf-shacl-commons';
const factory = new DataFactory();
export class BaseRdfStore {
constructor(n3store, lang) {
this.store = n3store;
this.lang = lang;
this.graph = new Model(n3store);
}
}
//# sourceMappingURL=BaseRdfStore.js.map