mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-31 16:09:28 +02:00
6 lines
129 B
SPARQL
6 lines
129 B
SPARQL
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
|
|
SELECT *
|
|
WHERE { ?x ?y ?val .
|
|
FILTER ( xsd:integer(?val) = 10 )
|
|
}
|