UNPKG

graphql-ld-comunica

Version:
12 lines (11 loc) 378 B
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>; }