eyereasoner 2.4.1 → 2.5.0

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 CHANGED
@@ -22,6 +22,19 @@ async function main() {
22
22
  main();
23
23
  ```
24
24
 
25
+ or if you just wish to get all inferred facts
26
+
27
+ ```ts
28
+ import { basicQuery } from 'eyereasoner';
29
+
30
+ async function main() {
31
+ // The result of the query (as an array of quads)
32
+ const result = await basicQuery(dataQuads);
33
+ }
34
+
35
+ main();
36
+ ```
37
+
25
38
  Here the inputs and outputs are both arrays of RDF/JS Quads; for instance
26
39
 
27
40
  ```ts