EYE mock solving your n3 reasoning on a server instead of client side Prolog execution
npm install eye-mockInstall the package via NPM
```
npm install eye-mock
Import and use the function in your code
`javascript
import { n3reasoner } from 'eye-mock';
const data =
@prefix :
:Alice a :Person .
{ ?S a :Person } => { ?S a :Human } .;
const query = {?S ?P ?O . } => {?S ?P ?O . } .;
const options = { output: "derivations", outputType: "string", bnodeRelabeling: true };
const result = await n3reasoner(data, query, options);
`
The options parameter is optional and can be used to configure the reasoning process. The following options are available:output
- : What to output with implicit queries.none
- : no implicit query is passedderivations
- : output only new derived triples, a.k.a --pass-only-new (default)deductive_closure
- : output deductive closure, a.k.a --passdeductive_closure_plus_rules
- : output deductive closure plus rules, a.k.a --pass-allgrounded_deductive_closure_plus_rules
- : ground the rules and output deductive closure plus rules, a.k.a --pass-all-groundoutputType
- : The type of outputstring
- : output as string (default)quads
- : output as array of RDF/JS QuadsbnodeRelabeling
- : Whether or not to perform bnodeRelabelingtrue
- : perform bnodeRelabeling (default)false`: do not perform bnodeRelabeling
-