query-6ab413ba97c72b70411b64a6e7653a3c
List of external superproperty declarations in Wikidata
These connections allow data to be automatically or semi-automatically reshaped into higher resolution internal properties
or conversely dumbed down to external terms on export.
SELECT ?prop ?propLabel ?externalSuperprop WHERE { ?prop wdt:P2235 ?externalSuperprop . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY xsd:integer(STRAFTER(STR(?prop), "http://www.wikidata.org/entity/P"))
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# List of external superproperty declarations in Wikidata
# These connections allow data to be automatically or semi-automatically reshaped into higher resolution internal properties
# or conversely dumbed down to external terms on export.
SELECT ?prop ?propLabel ?externalSuperprop
WHERE {
?prop wdt:P2235 ?externalSuperprop .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY xsd:integer(STRAFTER(STR(?prop), "http://www.wikidata.org/entity/P"))
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?externalSuperprop"):::projected
v1("?prop"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P2235"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end