I'm trying to create a search that always looks for the responses from the latest version of my app. The `version` field is already defined and the values are something like 1.0, 1.1 or 1.2. Currently, anytime I update my app I need to update my search query to look for the new version (version=1.3) I want to do something like "version=my_latest_version" where my_latest_version is a dynamic value that returns the max value of all current "version" field values. is this possible? Thanks!
... View more