@prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix test: . @prefix : <#> . <> a test:Test; owl:versionInfo "$Id: uncle-2.n3,v 1.2 2003/06/24 23:23:35 mdean Exp $"; rdfs:comment "property chaining with subproperties". :parent a owl:ObjectProperty. :father a owl:ObjectProperty; rdfs:subPropertyOf :parent. :mike :father :joe. :joe :brother :leon. { ?child :parent ?p. ?p :brother ?u. } => { ?child :uncle ?u } . { :mike :uncle :leon } => { <> test:successful "true" } .