Mendix 11 is currently in Beta. For more information about Beta releases and features, see Beta Releases.

XPath true

Last modified: March 28, 2025

Overview

The function true() returns the Boolean value true.

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

Example

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

    [IsGoldCustomer = true()]
    
     //Sales.Customer[IsGoldCustomer = true()]