query-548c13715dd7430e98ce960be81451b3
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX mwapi: <http://wikiba.se/ontology#>
PREFIX wikibase: <http://wikiba.se/ontology#>
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
WHERE {
SERVICE wikibase:mwapi {
bd:serviceParam wikibase:api "Search";
wikibase:endpoint "www.wikidata.org";
mwapi:srsearch "Wikimedia-Begriffsklärungsseite -haswbstatement:P31 -haswbstatement:P279".
?item wikibase:apiOutputItem mwapi:title .
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "de".
?item schema:description ?itemDescription .
?item rdfs:label ?itemLabel .
}
filter(str(?itemDescription)="Wikimedia-Begriffsklärungsseite")
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemDescription"):::projected
v3("?itemLabel"):::projected
c7(["www.wikidata.org"]):::literal
c14(["de"]):::literal
c3(["bd:serviceParam"]):::iri
c5(["Search"]):::literal
c9(["Wikimedia-Begriffsklärungsseite -haswbstatement:P31 -haswbstatement:P279"]):::literal
c11(["mwapi:title"]):::iri
f0[["str(?itemDescription) = 'Wikimedia-Begriffsklärungsseite'"]]
f0 --> v1
subgraph s1["http://wikiba.se/ontology#mwapi"]
style s1 stroke-width:4px;
c3 --"mwapi:api"--> c5
c3 --"mwapi:endpoint"--> c7
c3 --"mwapi:srsearch"--> c9
v2 --"mwapi:apiOutputItem"--> c11
end
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c3 --"mwapi:language"--> c14
v2 --"schema:description"--> v1
v2 --"rdfs:label"--> v3
end