query-28b773c17e4464acc658f406ef8c3a38
🪣 Pictorial overview of WikiProject Invasive species
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/>
#defaultView:ImageGrid
PREFIX target: <http://www.wikidata.org/entity/Q56241615>
SELECT DISTINCT ?item (SAMPLE(?image_) AS ?image) WHERE {
{
# Images of the target
target: wdt:P18 ?image_ .
}
UNION {
# Images from whatever property value is linked.
# Excluded "different from" property and take all other properties
target: !wdt:P1889 ?item .
?item wdt:P18 ?image_ .
# All people are humans, so these images are excluded.
FILTER (?item != wd:Q5)
}
UNION {
# Images from whatever property value is linked.
# Excluded "different from" property and take all other properties
?item !wdt:P1889 target: .
?item wdt:P18 ?image_ .
}
?item wikibase:sitelinks ?sitelinks .
}
GROUP BY ?item ?image
ORDER BY DESC(?sitelinks)
LIMIT 200