query-7eff9be68e1c9b354ade4eda8dcb515c
title: lebendige Sprachen mit einer Seite auf dewiki SELECT ?code ?sprache (GROUP_CONCAT(DISTINCT ?sprachgruppe; SEPARATOR = ", ") AS ?familie) (GROUP_CONCAT(DISTINCT ?land; SEPARATOR = ", ") AS ?gesprochen_in) ?article ?item WHERE { ?item wdt:P31 wd:Q1288568. OPTIONAL { ?article schema:about ?item; schema:isPartOf https://de.wikipedia.org/; schema:name ?page_title. } OPTIONAL { ?item wdt:P279 ?oberklasse. } OPTIONAL { ?item wdt:P17 ?staat. } OPTIONAL { ?item wdt:P424 ?code. } FILTER(BOUND(?article)) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". ?item rdfs:label ?sprache. ?staat rdfs:label ?land. ?oberklasse rdfs:label ?sprachgruppe. } } GROUP BY ?code ?sprache ?article ?item ORDER BY (?sprache)
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 schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: lebendige Sprachen mit einer Seite auf dewiki
SELECT ?code ?sprache (GROUP_CONCAT(DISTINCT ?sprachgruppe; SEPARATOR = ", ") AS ?familie) (GROUP_CONCAT(DISTINCT ?land; SEPARATOR = ", ") AS ?gesprochen_in) ?article ?item WHERE {
?item wdt:P31 wd:Q1288568.
OPTIONAL {
?article schema:about ?item;
schema:isPartOf <https://de.wikipedia.org/>;
schema:name ?page_title.
}
OPTIONAL { ?item wdt:P279 ?oberklasse. }
OPTIONAL { ?item wdt:P17 ?staat. }
OPTIONAL { ?item wdt:P424 ?code. }
FILTER(BOUND(?article))
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?item rdfs:label ?sprache.
?staat rdfs:label ?land.
?oberklasse rdfs:label ?sprachgruppe.
}
}
GROUP BY ?code ?sprache ?article ?item
ORDER BY (?sprache)