comparison sparql/sparql/test/dawg/data-r2/optional-filter/expr-1-result.ttl @ 0:7785ad38967f default tip

Uploaded
author atsuko
date Thu, 25 Aug 2011 22:14:55 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:7785ad38967f
1 @prefix dc: <http://purl.org/dc/elements/1.1/> .
2 @prefix rs: <http://www.w3.org/2001/sw/DataAccess/tests/result-set#> .
3 @prefix x: <http://example.org/ns#> .
4 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
5 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
6
7 [] rdf:type rs:ResultSet ;
8 rs:resultVariable "title" ;
9 rs:resultVariable "price" ;
10 rs:solution
11 [ rs:binding [ rs:value "TITLE 1" ;
12 rs:variable "title"
13 ] ;
14 rs:binding [ rs:value "10"^^xsd:integer ;
15 rs:variable "price"
16 ]
17 ] ;
18 rs:solution
19 [ rs:binding [ rs:value "TITLE 3" ;
20 rs:variable "title"
21 ]
22 ] ;
23 rs:solution
24 [ rs:binding [ rs:value "TITLE 2" ;
25 rs:variable "title"
26 ]
27 ] .