If you would like to upgrade to a newer long-term support version of Studio Pro, see Moving from Mendix Studio Pro 8 to 9.
XPath Min
Last modified: August 27, 2024
Overview
The min()
function returns the minimum value of its argument.
The function requires an XPath query as argument.
The function must specify a column in the query to aggregate.
The query must specify an attribute that has a numeric type.
Examples
This query returns the lowest total price found in any object:
min(//Sales.Order/TotalPrice)
This query returns the lowest total price of an order placed by a customer named “Jansen”:
min(//Sales.Order[Sales.Customer_Order/Sales.Customer/Name = 'Jansen']/TotalPrice)