@prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix test: . @prefix : <#> . <> a test:Test; owl:versionInfo "$Id: uncle-1.n3,v 1.3 2003/06/24 23:18:13 mdean Exp $"; rdfs:comment "basic property chaining". :mike :parent :joe. :joe :brother :leon. { ?child :parent ?p. ?p :brother ?u. } => { ?child :uncle ?u }. { :mike :uncle :leon } => { <> test:successful "true" } .