query-e542a569000409a6b29544aa5bd08f8f
Give me all triples of a given Property!
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?subject ?subjectLabel ?object ?ObjectLabel
WHERE {
?subject wdt:P10287 ?object .
SERVICE wikibase:label {bd:serviceParam wikibase:language "de, en"}
} ORDER BY ASC(?subjectLabel) ASC(?ObjectLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?ObjectLabel"):::projected
v4("?object"):::projected
v3("?subject"):::projected
v1("?subjectLabel"):::projected
c3(["bd:serviceParam"]):::iri
c5(["de, en"]):::literal
v3 --"wdt:P10287"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end