query-0d67b608645703715649cc1fa498b718
Gib mir alle Datenpolicies (Timeline)
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 bd: <http://www.bigdata.com/rdf#>
#defaultView:Timeline
SELECT ?authorLabel ?policy ?policyLabel ?date
WHERE {
?policy wdt:P31 wd:Q92790587.
?policy wdt:P577 ?date.
?policy wdt:P50 ?author.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en" }
} ORDER BY ?date
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?author")
v1("?date"):::projected
v2("?policy"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q92790587"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P577"--> v1
v2 --"wdt:P50"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end