mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-03 14:13:11 +02:00
9 lines
184 B
SPARQL
9 lines
184 B
SPARQL
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
|
|
PREFIX : <http://example.org/things#>
|
|
SELECT ?v1 ?v2
|
|
WHERE
|
|
{ ?x1 :p ?v1 .
|
|
?x2 :p ?v2 .
|
|
FILTER ( ?v1 = ?v2 ) .
|
|
}
|