eyereasoner 2.10.0 → 2.10.2
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 +1 -1
- package/dist/eye.d.ts +1 -1
- package/dist/eye.js +1 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.js +6 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ import { Parser } from 'n3';
|
|
|
44
44
|
|
|
45
45
|
const parser = new Parser({ format: 'text/n3' });
|
|
46
46
|
export const queryQuads = parser.parse(queryString);
|
|
47
|
-
export const
|
|
47
|
+
export const dataQuads = parser.parse(dataString);
|
|
48
48
|
|
|
49
49
|
// The result of the query (as an array of quads)
|
|
50
50
|
const resultQuads = await n3reasoner(dataQuads, queryQuads);
|