SELECT *
WHERE { ?s ?p ?o }
Is it possible to stream queries results with Fuseki? It feels like what Fuseki is doing is 1) retrieve all results first 2) send all results at once second. Is this correct? In particular, what I'm trying to do is to loop through a large set of triples using either Python or PHP, so what I'd need is some kind of "iterator" to read data (query results) in a streaming fashion. Any hints? Thanks a lot.
