query-262d70e43381beb2a79c5a6bf43f241e

rq turtle/ttl

Afficher le domaine d'activité des chats

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#>
SELECT ?item ?itemLabel ?occupationLabel
WHERE
{
  ?item wdt:P31 wd:Q146. 
  ?item wdt:P106 ?occupation.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en". } 
}
ORDER BY ?occupation

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?occupation") c2(["wd:Q146"]):::iri c5(["bd:serviceParam"]):::iri c7(["fr,en"]):::literal v2 --"wdt:P31"--> c2 v2 --"wdt:P106"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end