You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2011/06/16 16:42:30 UTC

svn commit: r1136462 - /incubator/jena/Jena2/ARQ/trunk/Q.rq

Author: andy
Date: Thu Jun 16 14:42:30 2011
New Revision: 1136462

URL: http://svn.apache.org/viewvc?rev=1136462&view=rev
Log: (empty)

Modified:
    incubator/jena/Jena2/ARQ/trunk/Q.rq

Modified: incubator/jena/Jena2/ARQ/trunk/Q.rq
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/ARQ/trunk/Q.rq?rev=1136462&r1=1136461&r2=1136462&view=diff
==============================================================================
--- incubator/jena/Jena2/ARQ/trunk/Q.rq (original)
+++ incubator/jena/Jena2/ARQ/trunk/Q.rq Thu Jun 16 14:42:30 2011
@@ -1,5 +1,9 @@
 PREFIX : <http://example/>
+PREFIX rdfs:    <http://www.w3.org/2000/01/rdf-schema#>
+
 SELECT *
 {
-  <http://example/s> <http://example/p> 123 .
+ { ?s ?p ?o . FILTER(?p = rdfs:member) }
+ UNION 
+ { ?s rdfs:member ?o }
 }
\ No newline at end of file