@traqula/generator-sparql-1-2 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/lib/index.cjs +1852 -1786
- package/lib/index.d.ts +221 -2
- package/lib/index.js +9 -20
- package/lib/index.js.map +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -6,8 +6,6 @@
|
|
|
6
6
|
<strong>A query language transpiler framework for JavaScript</strong>
|
|
7
7
|
</p>
|
|
8
8
|
|
|
9
|
-
**WARNING:** V2 will come shortly and will have lots of breaking changes.
|
|
10
|
-
|
|
11
9
|
# Traqula SPARQL 1.2 generator
|
|
12
10
|
|
|
13
11
|
Traqula Generator Sparql 1.2 is a [SPARQL 1.2](https://www.w3.org/TR/sparql12-query/#grammar) query generator for TypeScript.
|
|
@@ -47,3 +45,5 @@ This package contains a `Generator` that is able to generate SPARQL 1.2 queries:
|
|
|
47
45
|
const generator = new Generator();
|
|
48
46
|
const abstractSyntaxTree = generator.generate(abstractSyntaxTree);
|
|
49
47
|
```
|
|
48
|
+
|
|
49
|
+
Note that a single generator cannot generate multiple queries in parallel.
|