query-a392a705a7464eb6c4692193bf119256
TODO
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 bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?property
WHERE
{
SERVICE bd:sample
{
?item wdt:P31 wd:Q11424. # ?item is instance of film.
bd:serviceParam bd:sample.limit 25000 . # Get a sample with 25000 items
}
?item ?claim [].
?property wikibase:claim ?claim.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?claim")
v1("?item")
v3("?property"):::projected
a1((" "))
c4(["bd:serviceParam"]):::iri
c6(["25000^^xsd:integer"]):::literal
c3(["wd:Q11424"]):::iri
subgraph s1["http://www.bigdata.com/rdf#sample"]
style s1 stroke-width:4px;
v1 --"wdt:P31"--> c3
c4 --"bd:sample.limit"--> c6
end
v1 -->v2--> a1
v3 --"wikibase:claim"--> v2