query-c5f894a27ca9d4dc7ddc6fd1f462f6c4
Personne qui ont un ID SAPA dans Wikidata et qui ont une occupation "bizarre" (sport) SELECT DISTINCT ?item ?itemLabel (CONCAT("http://data.performing-arts.ch/",?idSAPA) AS ?SAPA) WHERE { ?item wdt:P8974 ?idSAPA; wdt:P106 ?occupation . ?occupation wdt:P279* wd:Q2066131. # occupation est un sous-classe de sport minus { VALUES ?occupation {wd:Q33999} }. 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
- https://query.wikidata.org/sparql
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" (sport)
SELECT DISTINCT ?item ?itemLabel (CONCAT("http://data.performing-arts.ch/",?idSAPA) AS ?SAPA)
WHERE
{
?item wdt:P8974 ?idSAPA;
wdt:P106 ?occupation .
?occupation wdt:P279* wd:Q2066131. # occupation est un sous-classe de sport
minus { VALUES ?occupation {wd:Q33999} }.
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;
v4("?SAPA")
v2("?idSAPA"):::projected
v1("?item"):::projected
v4("?occupation")
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,it,de,fr,en"]):::literal
c4(["wd:Q2066131"]):::iri
v1 --"wdt:P8974"--> v2
v1 --"wdt:P106"--> v4
v4 --"wdt:P279"--> c4
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
bind1[/VALUES ?occupation/]
bind1-->v4
bind10(["wd:Q33999"])
bind10 --> bind1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind2[/"concat('http://data.performing-arts.ch/',?idSAPA)"/]
v2 --o bind2
bind2 --as--o v4