query-01e5d545eca6fce4c3de0c3cd638ab0b
Wikidata properties having mix'n'match catalog (Magnus) SELECT DISTINCT ?q ?qLabel WHERE { ?q rdf:type wikibase:Property ; wdt:P2264 ?mnm SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Wikidata properties having mix'n'match catalog (Magnus)
SELECT DISTINCT ?q ?qLabel
WHERE
{
?q rdf:type wikibase:Property ; wdt:P2264 ?mnm
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?mnm")
v1("?q"):::projected
c5(["bd:serviceParam"]):::iri
c2(["wikibase:Property"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"a"--> c2
v1 --"wdt:P2264"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end