Finding all steps in property path
问题 I'm new to SPARQL and I'm trying to create a property path query that will spit out each intermediate step along the path. So far I have this: select ?object where { <subjectURI> <isRelatedTo>+ ?object . } This gives me a list of all the relations to my subject URI throughout the path, no matter how distantly the relation (correct me if I'm wrong so far). But, I'd like to see how the relations are organized. Something like: <subjectURI> <isRelatedTo> <object1> <object1> <isRelatedTo> <object2