graphql-ld-comunica
Version:
A GraphQL-LD engine that is backed by Comunica
12 lines (11 loc) • 378 B
TypeScript
import { IQueryEngine } from "graphql-ld";
import { Algebra } from "sparqlalgebrajs";
/**
* A GraphQL-LD engine that is backed by Comunica.
*/
export declare class QueryEngineComunica implements IQueryEngine {
private readonly comunicaEngine;
private readonly context;
constructor(context: any);
query(query: Algebra.Operation, options?: any): Promise<any>;
}