query-cdb0cf50c3ba4d225f2f0dc3dc67c93a
Hi!Hi, I'm Luca Could someone helpme to estract a value for codificazione (P3294). P3294 is a qualifier for the P4152 property I wrote this:
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 ?item ?itemLabel ?itemDescription ?pattern_identificazione_del_formato_file ?codificazione ?codificazioneLabel WHERE {
?item wdt:P31 wd:Q235557.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en, de, fr, da, pl". }
OPTIONAL { ?item wdt:P4152 ?pattern_identificazione_del_formato_file. }
OPTIONAL { ?item wdt:P3294 ?codificazione. }
}
ORDER BY ?itemLabel
LIMIT 5800
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?codificazione"):::projected
v2("?item"):::projected
v1("?itemLabel"):::projected
v3("?pattern_identificazione_del_formato_file"):::projected
c2(["wd:Q235557"]):::iri
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en, de, fr, da, pl"]):::literal
v2 --"wdt:P31"--> c2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P4152".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P3294".-> v4
end