How to get list of famous Places? #10
Answered
by
adarshmadrecha
adarshmadrecha
asked this question in
Q&A
-
|
Since there is Google Maps review count property, how can I filter the data based on this? |
Beta Was this translation helpful? Give feedback.
Answered by
adarshmadrecha
Oct 2, 2025
Replies: 1 comment
-
PREFIX yq: <https://data.jain.wiki/entity/>
PREFIX yp: <https://data.jain.wiki/prop/direct/>
SELECT ?item ?itemLabel ?itemDescription ?mapreviews WHERE {
?item yp:P28 ?mapreviews .
FILTER(?mapreviews > 500)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?mapreviews)The above query filters if the Item has more than |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
adarshmadrecha
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Go to Query Service
Run the below query
The above query filters if the Item has more than
500reviews, change the number to get bigger or smaller list.