query-8230122e9bc47b25ccb2a0efaf9de3a2

rq turtle/ttl

objets classés Palissy dans le château de Bussy-Rabutin

ne ramène pas tout car la déclaration "lieu" manque sur certains objets

SELECT ?item ?itemLabel ?natureLabel ?statutLabel ?palissyLabel WHERE { ?item wdt:P31 ?nature. # nature de l'élément (P31) ?item wdt:P276 wd:Q1552130. #lieu (P276) = château de Bussy-Rabutin (Q1552130) ?item wdt:P1435 ?statut . # statut patrimonial (P1435) ?item wdt:P481 ?palissy . # identifiant Palissy (P481) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?itemLabel

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#>
#objets classés Palissy dans le château de Bussy-Rabutin
# ne ramène pas tout car la déclaration "lieu" manque sur certains objets
SELECT ?item ?itemLabel ?natureLabel ?statutLabel ?palissyLabel WHERE {
  ?item wdt:P31 ?nature. # nature de l'élément (P31)
  ?item wdt:P276 wd:Q1552130. #lieu (P276) = château de Bussy-Rabutin (Q1552130)
  ?item wdt:P1435 ?statut . # statut patrimonial (P1435) 
  ?item wdt:P481 ?palissy . # identifiant Palissy (P481) 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?itemLabel"):::projected v3("?nature") v5("?palissy") v4("?statut") c7(["bd:serviceParam"]):::iri c3(["wd:Q1552130"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P31"--> v3 v2 --"wdt:P276"--> c3 v2 --"wdt:P1435"--> v4 v2 --"wdt:P481"--> v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end