Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RDF Star Support #43

Open
bolerio opened this issue Dec 21, 2022 · 4 comments
Open

RDF Star Support #43

bolerio opened this issue Dec 21, 2022 · 4 comments

Comments

@bolerio
Copy link

bolerio commented Dec 21, 2022

Is RDF/SPARQL Star support? I tried with GraphDB with a query like

select * where {
<< <somesubject> <someprop> "somevalue" >> ?p ?v
}

The query succeeds and the variables ?p and ?v are instantiated correctly, but instead of the triple I get back some GraphDB internal generated identifier.

SPARQL HTTP Protocol is probably behind on RDF Star....any thoughts?

Apologies if this is not the right forum to ask a question like this - I see the same people in various RDF JavaScript effort, perhaps there is some discussion forum that I should be using.

@tpluscode
Copy link
Contributor

Are you sure that GraphDB sends a correct response? If you get something strange from the endpoint itself

I doubt this library could be at fault much itself. After all, it's just a fairly simple wrapper which performs the correct request and handles parsing of the response (be it SELECT bindings, triples from CONSTRUCT/DESCRIBE, etc)

That said, a parser used by sparql-http-client could have issues with RDF-Star but does not sound like that's the case

@bergos
Copy link
Member

bergos commented Dec 21, 2022

@bolerio The result parser doesn't support RDF-star at the moment. I plan to add this feature in the next major version. A catalog of features is in progress, and I will create issues and a milestone this week. The coding part is planned to be done in January.

@bolerio
Copy link
Author

bolerio commented Dec 22, 2022

@bergos Thanks for the info. Can't promise anything, but I'll monitor and if I find time I could try to contribute with the effort.

@bolerio
Copy link
Author

bolerio commented Dec 22, 2022

@tpluscode I am not sure that GraphDB sends the correct response, no. Also, I don't know what "correct" is here because I've never seen a spec for "SPARQL Star HTTP Protocol". But that's a good point, there could be a bug there...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants