query-1dc939cfae445b4e6d3b629fe0b88d56
title: properties eine Person SELECT ?class ?classname ?property ?propertyname WHERE { ?tree0 (wdt:P279)* ?class . BIND (wd:Q5 AS ?tree0) ?class wdt:P1963 ?property . FILTER(?class = ?tree0) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . ?class rdfs:label ?classname . ?property rdfs:label ?propertyname . } }
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: properties eine Person
SELECT ?class ?classname ?property ?propertyname WHERE {
?tree0 (wdt:P279)* ?class .
BIND (wd:Q5 AS ?tree0)
?class wdt:P1963 ?property .
FILTER(?class = ?tree0)
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" .
?class rdfs:label ?classname .
?property rdfs:label ?propertyname .
}
}