Laschoking
Laschoking
Another case is when I try to output a relation that does not exist (i.e. because of a typo), I receive the imprecise error message : `thread 'main' panicked at...
I think this could be closed. The only advantage I see is that `\t` and `\"` can be used as delimiters. The first point can be achieved with the `dsv`...
Currently, fstrings are the correct way to combine prefixes and variables. The error is caused because `uri()` is not an existing builtin function. You can use [`URIENCODE`](https://knowsys.github.io/nemo-doc/reference/builtins/#functions-for-strings). If you want...
1. You can use prefixes to simplify constants and predicate names (see the docu [here](https://knowsys.github.io/nemo-doc/guides/tour/#constants-and-predicate-names) .) For facts you can simply write: `clusterA(a, up:p1) .` your rule has a wrong...
I am not sure, if I understand your question correctly, but when importing rdf formats you can specify the `base` [parameter](https://knowsys.github.io/nemo-doc/reference/imports/). Imported relative IRIs will be made absolute based on...
Can you provide a working example? There is definitely some issue with the `@base` attribute related to the import & export format ( #662). I believe that the predicate renaming...
I can give this a try. I guess the easiest solution is to allow a set of default prefixes as additional parameter `Query::parse(query: &str, base_iri: Option, default_prefixes: Option)` and to...