mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-23 07:58:05 +02:00
9 lines
204 B
SPARQL
9 lines
204 B
SPARQL
PREFIX dc: <http://purl.org/dc/elements/1.1/>
|
|
PREFIX ns: <http://example.org/ns#>
|
|
SELECT ?title ?price
|
|
WHERE
|
|
{ ?x ns:price ?price .
|
|
FILTER ( ?price < 30 ) .
|
|
?x dc:title ?title .
|
|
}
|