query-534693cbcaf092d94a0e01a9970e8db5
Properties grouped by their type with number of properties SELECT ?property ?propertyLabel WHERE { ?property rdf:type wikibase:Property. ?property wikibase:propertyType wikibase:Time . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Properties grouped by their type with number of properties
SELECT ?property ?propertyLabel WHERE {
?property rdf:type wikibase:Property.
?property wikibase:propertyType wikibase:Time .
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;
v1("?property"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wikibase:Property"]):::iri
c4(["wikibase:Time"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"a"--> c2
v1 --"wikibase:propertyType"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end