query-fc507f91fc6951ca830752e7e2f31a40
Abreviacions d'unitats en diferents llengües SELECT DISTINCT ?unitat ?unitatLabel ?aca ?aen ?afr ?ade ?aes WHERE { ?unitat wdt:P5061 []. ?unitat wdt:P5061 ?aen. FILTER(LANG(?aen)="en") OPTIONAL { ?unitat wdt:P5061 ?aca. FILTER(LANG(?aca)="ca") } OPTIONAL { ?unitat wdt:P5061 ?afr. FILTER(LANG(?afr)="fr") } OPTIONAL { ?unitat wdt:P5061 ?ade. FILTER(LANG(?ade)="de") } OPTIONAL { ?unitat wdt:P5061 ?aes. FILTER(LANG(?aes)="es") } SERVICE wikibase:label {bd:serviceParam wikibase:language "ca,en" .} }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Abreviacions d'unitats en diferents llengües
SELECT DISTINCT ?unitat ?unitatLabel ?aca ?aen ?afr ?ade ?aes WHERE {
?unitat wdt:P5061 [].
?unitat wdt:P5061 ?aen.
FILTER(LANG(?aen)="en")
OPTIONAL {
?unitat wdt:P5061 ?aca.
FILTER(LANG(?aca)="ca")
}
OPTIONAL {
?unitat wdt:P5061 ?afr.
FILTER(LANG(?afr)="fr")
}
OPTIONAL {
?unitat wdt:P5061 ?ade.
FILTER(LANG(?ade)="de")
}
OPTIONAL {
?unitat wdt:P5061 ?aes.
FILTER(LANG(?aes)="es")
}
SERVICE wikibase:label {bd:serviceParam wikibase:language "ca,en" .}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?aca"):::projected
v2("?ade"):::projected
v4("?aen"):::projected
v1("?aes"):::projected
v3("?afr"):::projected
v6("?unitat"):::projected
a1((" "))
c8(["bd:serviceParam"]):::iri
c10(["ca,en"]):::literal
f0[["?aen = 'en'"]]
f0 --> v4
v6 --"wdt:P5061"--> a1
v6 --"wdt:P5061"--> v4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v6 -."wdt:P5061".-> v5
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v6 -."wdt:P5061".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v6 -."wdt:P5061".-> v2
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v6 -."wdt:P5061".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end