UNPKG

data-pipeline-information-system-sparql

Version:

Sparql function to query/update RDF through SPARQL 1.1

12 lines (10 loc) 415 B
import {Type, ConfigurationAttribute} from '../Core/types'; import SparqlAttribute from '../SparqlAttribute/SparqlAttribute'; export interface AttributeNestedI extends SparqlAttribute { nest?: { [key: string]: SparqlAttribute }; } export interface AttributeTripleI { json_pointer: string; triple: { subject: string, predicate: string, object: string }; target: 'subject' | 'predicate' | 'object' }