query-7eff9be68e1c9b354ade4eda8dcb515c

rq turtle/ttl

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

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)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article"):::projected v7("?code"):::projected v10("?familie") v11("?gesprochen_in") v3("?item"):::projected v8("?land"):::projected v5("?oberklasse") v4("?page_title") v1("?sprache"):::projected v9("?sprachgruppe"):::projected v6("?staat") c5([https://de.wikipedia.org/]):::iri c2(["wd:Q1288568"]):::iri c11(["bd:serviceParam"]):::iri c13(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["bound(?article)"]] f0 --> v2 v3 --"wdt:P31"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."schema:about".-> v3 v2 --"schema:isPartOf"--> c5 v2 --"schema:name"--> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P279".-> v5 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P17".-> v6 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P424".-> v7 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 v3 --"rdfs:label"--> v1 v6 --"rdfs:label"--> v8 v5 --"rdfs:label"--> v9 end bind3[/"?sprachgruppe"/] v9 --o bind3 bind3 --as--o v10 bind4[/"?land"/] v8 --o bind4 bind4 --as--o v11