Daniel Beeke
Daniel Beeke
``` const originalReplaceState = history.replaceState history.replaceState = (_a, _b, url) => { url = url.toString().replace('#', '/' + identifier) originalReplaceState.bind(history)(_a, _b, url) } ``` With this the hash is removed. I...
Yes, one thing though, I found that when I add skolemize it would not accept the following: ``` await path.address.delete(streetPath) ``` If streetPath needs skolemization it will not automatically resolve....
I checked the tests, at the moment it is not a supported feature to resolve paths and then delete them.
Great, I think I can write a merge request for this. Thanks for the pointer to `execute`
Ill will try to do this in the following weeks, I have a quite busy month.
I am sorry for the long time this has been open. I added the regression test. @jeswr is the test okay this way?
Have you seen? https://github.com/LDflex/LDflex/blob/master/src/SparqlHandler.js#L217 If the blank node was already skolemized it will keep that label. If have checked your reference. And: https://github.com/comunica/comunica/blob/master/packages/data-factory/lib/BlankNodeScoped.ts With a BlankNodeScoped Comunica could use that...
I would like to learn how to fix this issue. The first thing I would like to do is support the following: selecting: fruit.label.en I have been spending 4 hours...
If I understand it correctly it will be hard to detect what languages are possible. It would be interesting to have pluginType (like handlerss and resolvers) that may run after...
I have a proof of concept with one big pitfall. The languages are hardcoded. So it would not be possible to merge it. What would be a good way to...