Mendix 7 is no longer supported unless you have Extended Support. Mendix 7 documentation will remain available until July 2024.

To upgrade to a supported version, see Moving from Desktop Modeler Version 7 to Studio Pro 8.

XPath false

Last modified: June 29, 2022

1 Overview

The function false() returns the boolean value false.

To use the values true or false in XPath queries, it is necessary to either use the true() and false() functions or to enclose the values in quotation marks.

2 Example

This query returns all the customers who are not classified as gold customers:

1
//Sales.Customer[IsGoldCustomer = false()]