query-c6da9c1c85e8f31b04398409f951de25
afficher tous les éléments (ID, Label, Description), connus de Wikidata, qui dipose de la propriété "archivé par" (P485) pour une institution donnée.
classer ces derniers par genre ou sexe puis par ordre alphabéthique de Description puis de Label.
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?genreLabel WHERE { ?item wdt:P485 wd:Q2860505. #élément archivé par une institution donnée OPTIONAL {?item wdt:P21 ?genre.} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,it,de,nl,en". } } ORDER BY ?genreLabel ?itemDescription ?itemLabel
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#>
#afficher tous les éléments (ID, Label, Description), connus de Wikidata, qui dipose de la propriété "archivé par" (P485) pour une institution donnée.
#classer ces derniers par genre ou sexe puis par ordre alphabéthique de Description puis de Label.
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?genreLabel
WHERE {
?item wdt:P485 wd:Q2860505. #élément archivé par une institution donnée
OPTIONAL {?item wdt:P21 ?genre.}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,it,de,nl,en". }
}
ORDER BY ?genreLabel ?itemDescription ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?genre")
v1("?genreLabel"):::projected
v4("?item"):::projected
v2("?itemDescription"):::projected
v3("?itemLabel"):::projected
c2(["wd:Q2860505"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,fr,it,de,nl,en"]):::literal
v4 --"wdt:P485"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."wdt:P21".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end