query-1a45366777afb5da7911d7b7132bab2b

rq turtle/ttl

Personne qui ont un ID SAPA dans Wikidata et qui ont une occupation "bizarre" (scientifique) SELECT DISTINCT ?item ?itemLabel (CONCAT("http://data.performing-arts.ch/",?idSAPA) AS ?SAPA) WHERE { ?item wdt:P8974 ?idSAPA; wdt:P106 wd:Q1650915.# occupation est "chercheuse ou chercheur" SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,de,fr,en". } # le label viendra de préférence dans votre langue, et autrement en italien, allemand, français, anglais }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Personne qui ont un ID SAPA dans Wikidata et qui ont une occupation "bizarre" (scientifique)
SELECT DISTINCT ?item ?itemLabel (CONCAT("http://data.performing-arts.ch/",?idSAPA) AS ?SAPA)
WHERE 
{
  ?item wdt:P8974 ?idSAPA;
        wdt:P106 wd:Q1650915.# occupation est "chercheuse ou chercheur"
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,de,fr,en". } # le label viendra de préférence dans votre langue, et autrement en italien, allemand, français, anglais
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?SAPA") v2("?idSAPA"):::projected v1("?item"):::projected c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,it,de,fr,en"]):::literal c3(["wd:Q1650915"]):::iri v1 --"wdt:P8974"--> v2 v1 --"wdt:P106"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind0[/"concat('http://data.performing-arts.ch/',?idSAPA)"/] v2 --o bind0 bind0 --as--o v3