data-pipeline-information-system-sparql
Version:
Sparql function to query/update RDF through SPARQL 1.1
16 lines (15 loc) • 397 B
TypeScript
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';
}