blob: d77648841627d8f73e909ec62d7ddd88da8b1f58 (
plain)
1
2
3
4
5
6
7
8
9
10
|
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX : <http://example.org/book/>
PREFIX ns: <http://example.org/ns#>
SELECT ?book ?title ?price
{
VALUES ?book { :book1 }
?book dc:title ?title ;
ns:price ?price .
}
|