Laurens Rietveld

Results 50 comments of Laurens Rietveld

Alternatively, would rewriting it to typescript be an option as well? Reason I'm asking: it'll be quite some work adding typescript defs. Rewriting to typescript might take a bit longer,...

I bumped into this issue as well, where I'd like the whole queue to fail when there is an error. My usecase: - iterating through millions of records - doing...

I encountered the same issue. A workaround I'm using is wrapping the exit in a setTimeout: ``` React.useEffect(() => { setTimeout(() => exit(new Error('Exit')), 0); }, [exit]); ```

Just my 2c: - I wouldnt mind just removing the graph without warning, error or notice. To me, the fact that the callee specifies she'd like `n-triples`, means that that...

@robmadole It works for me, but other valid attributes (like `title`) are not supported yet via these typings. How about extending from `React.HTMLAttributes` instead of `React.DOMAttributes`? I also got an...

Hi @ktk , I noticed that, saw you on the list of sponsors :+1: :+1:

Sound like a fun exercise. The feasibility of this issue depends on the type of integration though: the any-time kind of query answering of LDF would be very tricky to...

Is this a public endpoint for which you can share the yasgui query link? If not, could you copy the request yasgui sends (copy as curl from developer tab), execute...

I'll leave it open anyway. The logic should have stayed the same (there is some logic that tries to auto-detect the response when it doesn't recognize the content type)

@shawnhind I'm can't manage to reproduce this. When executing a query on an endpoint that returns your example sparql response, and no response content type (see below for simple implementation),...