mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-15 08:07:41 +02:00
15 lines
389 B
SPARQL
15 lines
389 B
SPARQL
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
|
prefix ex: <http://example.org/survey-sample/ontology/>
|
|
prefix acm: <http://daml.umbc.edu/ontologies/topic-ont#>
|
|
prefix dc: <http://purl.org/dc/elements/1.1/>
|
|
|
|
SELECT ?who WHERE
|
|
{
|
|
[ rdf:subject ?work;
|
|
rdf:predicate ex:isAbout;
|
|
rdf:object ?topic
|
|
] dc:creator ?who
|
|
}
|
|
|