data-pipeline-information-system-sparql
Version:
Sparql function to query/update RDF through SPARQL 1.1
16 lines (15 loc) • 505 B
TypeScript
import { ConfigurationAttribute, Type } from '../Core/types';
import SparqlObject from '../SparqlObject/SparqlObject';
import parseTriple from './_parseTriples';
export declare class SparqlAttribute {
name: string;
arrayable: boolean;
optional: boolean;
type: Type;
reference: string;
binding: string;
triples: string[];
constructor(sparqlObject: SparqlObject, confAttribute?: ConfigurationAttribute);
parseTriple: typeof parseTriple;
}
export default SparqlAttribute;