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