query-b095dd78a83a3a3046ed1c9aceacc6a5
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/>
SELECT DISTINCT ?property
WHERE
{
?item wdt:P31 wd:Q11424. # ?item is instance of film.
?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((" "))
c2(["wd:Q11424"]):::iri
v1 --"wdt:P31"--> c2
v1 -->v2--> a1
v3 --"wikibase:claim"--> v2