query-48bf964e41cc35791295c53d3d526e3e
Fitxers de Commons que representen alguna masia SELECT ?file WITH { SELECT ?item WHERE { SERVICE https://query.wikidata.org/sparql { ?item wdt:P31 wd:Q585956. } } } AS %get_items WHERE { INCLUDE %get_items ?file wdt:P180 ?item. } LIMIT 1000
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#Fitxers de Commons que representen alguna masia
SELECT ?file
WHERE {
{
SELECT ?item
WHERE
{
SERVICE <https://query.wikidata.org/sparql>
{
?item wdt:P31 wd:Q585956.
}
}
} ?file wdt:P180 ?item.
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?file"):::projected
v1("?item")
c3(["wd:Q585956"]):::iri
subgraph s1["https://query.wikidata.org/sparql"]
style s1 stroke-width:4px;
v1 --"wdt:P31"--> c3
end
v2 --"wdt:P180"--> v1