Is it possible to send a parameterized query to fuseki? I mean sending a query
along with a list of parameters, more or less like this
format=json
query="select * where { $sbj a [] }"
sbj="<http://example.org/Alice>"
similar to SQL parameterized queries, where parameters are automatically
escaped in order to prevent injection attacks.
I know this would be more of a client issue than server, but I can't find any
library that does this, so I was wondering if Fuseki has anything like this
built in. In particular, I'd need a library for Python. Do you guys know any by
chance?