query-03838ed337afcc6c6a69532579bcd460

rq turtle/ttl

Les deux solutions ne sont pas incompatibles..(P366)usage ou (P31)nature de l'élémentJe serais plutôt réticent à "affiner" la nature, sur Wikidata il n'y a aucun problème problème à stocker des informations multiples voire contradictoire. En plus, je me demande si cette information "bâtiment parlementaire" à plus sa place dans la propriété ? (les bâtiments dont l'occupant est une assemblée législative) Pour la requête SPARQL, est-ce que celle-ci ne suffit pas

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 ?q ?qLabel WHERE {
  ?q wdt:P466/wdt:P31/wdt:P279* wd:Q10553309 .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?q"):::projected a1((" ")) a2((" ")) c6(["bd:serviceParam"]):::iri c4(["wd:Q10553309"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P466"--> a1 a1 --"wdt:P31"--> a2 a2 --"wdt:P279"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end