UNPKG

@jahed/sparql-engine

Version:

SPARQL query engine for servers and web browsers.

9 lines (8 loc) 196 B
/** * Enum describing the query capabilities of a Graph */ export type GraphCapability = number; export declare const GRAPH_CAPABILITY: { UNION: number; ESTIMATE_TRIPLE_CARD: number; };