query-34a178250fe28047fe3316a2af78563a
title: de-at only SELECT DISTINCT ?item ?itemLabel ?itemDescription ?labelDe ?labelAt ?DescrAt ?AliasAt ?labelEn WHERE { ?item wdt:P17 wd:Q40 . minus { ?item rdfs:label ?labelDe . FILTER(LANG(?labelDe) = 'de') . } minus { ?item schema:description ?DescrDe . FILTER(LANG(?DescrDe) = 'de') . } minus { ?item skos:altLabel ?AliasDe . FILTER(LANG(?AliasDe) = 'de') . } OPTIONAL { ?item rdfs:label ?labelAt . FILTER(LANG(?labelAt) = 'de-at') . } OPTIONAL { ?item schema:description ?DescrAt . FILTER(LANG(?DescrAt) = 'de-at') . } OPTIONAL { ?item skos:altLabel ?AliasAt . FILTER(LANG(?AliasAt) = 'de-at') . } OPTIONAL { ?item rdfs:label ?labelEn . FILTER(LANG(?labelEn) = 'en') . } #filter (bound (?labelAt) != bound (?labelEn)) filter (?labelAt != "")
}
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#title: de-at only
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?labelDe ?labelAt ?DescrAt ?AliasAt ?labelEn WHERE {
?item wdt:P17 wd:Q40 .
minus {
?item rdfs:label ?labelDe .
FILTER(LANG(?labelDe) = 'de') .
}
minus {
?item schema:description ?DescrDe .
FILTER(LANG(?DescrDe) = 'de') .
}
minus {
?item skos:altLabel ?AliasDe .
FILTER(LANG(?AliasDe) = 'de') .
}
OPTIONAL {
?item rdfs:label ?labelAt .
FILTER(LANG(?labelAt) = 'de-at') .
}
OPTIONAL {
?item schema:description ?DescrAt .
FILTER(LANG(?DescrAt) = 'de-at') .
}
OPTIONAL {
?item skos:altLabel ?AliasAt .
FILTER(LANG(?AliasAt) = 'de-at') .
}
OPTIONAL {
?item rdfs:label ?labelEn .
FILTER(LANG(?labelEn) = 'en') .
}
#filter (bound (?labelAt) != bound (?labelEn))
filter (?labelAt != "")
}