query-79ada002cf96106d43bee65b218dd0c3
TODO
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#>
SELECT DISTINCT ?item ?itemLabel ?sitelinks
WHERE
{
VALUES ?occupation {wd:Q82955 wd:Q193391}
?item wdt:P106 ?occupation .
?item wdt:P21 wd:Q6581072.
?item wdt:P27 wd:Q39.
?item wikibase:sitelinks ?sitelinks.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,nl". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?occupation")
v3("?sitelinks"):::projected
c5(["wd:Q39"]):::iri
c10(["en,nl"]):::literal
c8(["bd:serviceParam"]):::iri
c3(["wd:Q6581072"]):::iri
bind0[/VALUES ?occupation/]
bind0-->v1
bind00(["wd:Q82955"])
bind00 --> bind0
bind01(["wd:Q193391"])
bind01 --> bind0
v2 --"wdt:P106"--> v1
v2 --"wdt:P21"--> c3
v2 --"wdt:P27"--> c5
v2 --"wikibase:sitelinks"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end