sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
22 lines (21 loc) • 418 B
TypeScript
/**
* {
* queryString: "...",
* queryTemplate: "...",
* labelPath: "...",
* labelProperty: "...",
* childrenPath: "...",
* childrenProperty: "...",
* noSort: true
* }
**/
export interface IDatasource {
queryString?: string;
queryTemplate?: any;
labelPath?: any;
labelProperty?: any;
childrenPath?: any;
childrenProperty?: any;
sparqlEndpointUrl?: any;
noSort?: boolean;
}