- From: Kendall Clark <kendall@monkeyfist.com>
- Date: Fri, 5 Aug 2005 15:06:32 -0400
- To: DAWG Mailing List <public-rdf-dawg@w3.org>
Here's the beginning of a CONSTRUCT test to show ground triples in the graph template. Ideally, if I could figure out how to filter out particular triples, this would be slightly more interesting. I didn't see any CONSTRUCT tests, so I'm not even sure this is possible. Cheers, Kendall --Data-- @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>. @prefix foaf: <http://xmlns.com/foaf/0.1/>. @prefix myfoaf: <http://clark.dallas.tx.us/kendall/foaf.rdf#>. myfoaf:kendall foaf:name "Kendall Grant Clark"; foaf:workplaceHomepage <http://www.mindswap.org/>; foaf:homepage <http://clark.dallas.tx.us/kendall/>; foaf:knows myfoaf:edd; foaf:knows myfoaf:niel; rdf:type foaf:Person. myfoaf:edd foaf:mbox <mailto:edd@usefulinc.com>; rdf:type foaf:Person. myfoaf:niel rdf:type foaf:Person; foaf:mbox <mailto:niel@bornstein.atlanta.ga.us>. ---- --Query-- PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX myfoaf: <http://clark.dallas.tx.us/kendall/foaf.rdf#> CONSTRUCT { myfoaf:kendall foaf:depiction <http://clark.dallas.tx.us/kendall/kendall.jpg>. myfoaf:kendall foaf:schoolHomepage <http://www.smu.edu/>. ?s ?p ?o.} WHERE { ?s ?p ?o.} ---- --Results-- @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>. @prefix foaf: <http://xmlns.com/foaf/0.1/>. @prefix myfoaf: <http://clark.dallas.tx.us/kendall/foaf.rdf#>. myfoaf:kendall foaf:name "Kendall Grant Clark"; foaf:depiction <http://clark.dallas.tx.us/kendall/kendall.jpg>. foaf:schoolHomepage <http://www.smu.edu/>. foaf:workplaceHomepage <http://www.mindswap.org/>; foaf:homepage <http://clark.dallas.tx.us/kendall/>; foaf:knows myfoaf:edd; foaf:knows myfoaf:niel; rdf:type foaf:Person. myfoaf:edd foaf:mbox <mailto:edd@usefulinc.com>; rdf:type foaf:Person. myfoaf:niel rdf:type foaf:Person; foaf:mbox <mailto:niel@bornstein.atlanta.ga.us>. ----
Received on Friday, 5 August 2005 19:08:44 UTC