data-pipeline-information-system-sparql
Version:
Sparql function to query/update RDF through SPARQL 1.1
13 lines (12 loc) • 401 B
TypeScript
import { UnaryOperationType, UnaryOperation } from './unaryFunctions';
export interface UnaryOperation {
operation: UnaryOperationType;
json_pointers: string | string[];
arguments?: any;
}
export interface QueryModel {
model: string;
set: Array<UnaryOperation>;
}
export declare function generateQueryRequest(queryRequest: QueryModel): string;
export default generateQueryRequest;