Jesse Wright
Jesse Wright
> If you have any input on how this approach can be improved, please let me know :-) If support for an input `source` as a user input has been...
TLDR; Since you only have one source try executing the SELECT query with ```ts { source: store } ``` rather than ```ts { sources: [store], } ``` this way it...
> Then I get following error: Huh - I was assuming the context preprocessor behaved differently; see #1058 . In the meantime use ```ts { source: store, destination: store }...
Related @pietercolpaert observed a while back that Comunica accepts negative `xsd:dateTime`s even though they are not allowed by the XSD spec. In particular I *think* https://query.linkeddatafragments.org/#datasources=https%3A%2F%2Fquery.wikidata.org%2Fbigdata%2Fldf&query=PREFIX%20wdt%3A%20%3Chttp%3A%2F%2Fwww.wikidata.org%2Fprop%2Fdirect%2F%3E%0APREFIX%20wd%3A%20%3Chttp%3A%2F%2Fwww.wikidata.org%2Fentity%2F%3E%0ASELECT%20(count(%3Fperson)%20as%20%3Fcount)%20%3Fmonth%20%20WHERE%20%7B%0A%20%20%3Fperson%20wdt%3AP106%20wd%3AQ2066131%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP569%20%3Fbirth%20.%0A%7D%0AGROUP%20BY%20(month(%3Fbirth)%20as%20%3Fmonth)&solidIdp=https%3A%2F%2Fpmcolpae.pod.knows.idlab.ugent.be%2F should fail because there...
This would indicate it should be possible https://web.dev/emscripten-npm/. I'm guessing the current issue would be that [here](https://github.com/josd/eyebrow/blob/3b9d4d8dea4b9c929383060f763af881717c44ba/swipl-web.js#L1456) `locateFile` is not doing the relative loading I will expect. I haven't had...
Alrighty - this was a good evening task to come back to after banging my head against asynciterator internals. This is working now - the only remaining task is to...
This should be ready to merge @rubensworks :)
Would need to double check but I think the setup meant that all elements were being buffered through the transform iterator which can have non-negligible impacts depending on the source.
I also suggest that you run the script after merging all PRs that are ready for merge
In addition the following utilities would be of great benefit in our use case. (Note the following code is untested - as I have converted this from a custom stream...