query-e0811075b2ed569fcd8882876da71cd1
17:47, 13 February 2020 (UTC) dosisEpì the Italian label in one column and the English label in another column? Thank you, --at the same timecould you explain me how can I visualise
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?itemDescription ?itemAltLabel ?it ?dit ?en ?den
WHERE
{
?item wdt:P3365 [] .
OPTIONAL { ?item rdfs:label ?it . FILTER( lang(?it) = "it") }
OPTIONAL { ?item rdfs:label ?en . FILTER( lang(?en) = "en") }
OPTIONAL { ?item schema:description ?dit . FILTER( lang(?dit) = "it") }
OPTIONAL { ?item schema:description ?den . FILTER( lang(?den) = "en") }
SERVICE wikibase:label { bd:serviceParam wikibase:language "zh,ru,ja" . }
}
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?den"):::projected
v2("?dit"):::projected
v3("?en"):::projected
v4("?it"):::projected
v5("?item"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c9(["zh,ru,ja"]):::literal
v5 --"wdt:P3365"--> a1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v5 -."rdfs:label".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v5 -."rdfs:label".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v5 -."schema:description".-> v2
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v5 -."schema:description".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end