@traqula/parser-sparql-1-2
v1.0.0
Published
SPARQL 1.2 parser
Downloads
304
Readme
Traqula parser engine for SPARQL 1.2
Traqula Sparql 1.2 is a SPARQL 1.2 query parser for TypeScript. It is a grammar extension of Traqula engine-sparql-1-1
Installation
npm install @traqula/parser-sparql-1-1or
yarn add @traqula/parser-sparql-1-1Import
Either through ESM import:
import {Parser} from '';or CJS require:
const Parser = require('').Parser;Usage
This package contains a Parser that is able to parse SPARQL 1.2 queries:
const parser = new Parser();
const abstractSyntaxTree = parser.parse('SELECT * { ?s ?p ?o }');This parser is a simple grammar extension to the engine-sparql-1-1. As such, most, if not all, documentation of that parser holds for this one too.
