antoniogarrote / rdfstore-js

JS RDF store with SPARQL support
MIT License
564 stars 109 forks source link

Support SPARQL 1.1 property paths #136

Open hhp21 opened 8 years ago

hhp21 commented 8 years ago

Hi, I have a use case where I'm interested in finding all the sub classes of a class. The only way I think this is possible is with property paths:

SELECT ?t { ?t rdfs:subClassOf+ <http://example.com/myClass> . }

But I believe property paths are not supported yet. Are there any plans to add support for this? I don't think there is a workaround for querying for transitive closures without doing it in a loop in code.

Thanks.

danbri commented 8 years ago

In general, what plans are there for v1.1 and further development of this library?