XPath

Last modified: February 13, 2024

1 Introduction

Mendix XPath is one of the Mendix query languages designed to retrieve data. XPath uses path expressions to select data of Mendix objects and their attributes or associations.

XPath queries can be written both in Studio Pro, for example when you want to specify a constraint on the data retrieved in a Retrieve microflow activity, and directly in code in the .java files of you Java actions. Note that not all operators are supported by Studio Pro, and that the syntax of your query may differ between Studio Pro and Java environments.

Examples of XPath queries are:

  • //Sales.Customer Retrieve all customers.
  • //Sales.Customer[Name='Jansen'] Retrieve all customers with name ‘Jansen’.
  • avg(//Sales.Order[IsPaid = true()]/TotalPrice) Retrieve the average of the total prices of all paid orders.

2 XPath Elements

A common Mendix XPath query consists of a several elements.

A B C D
Aggregate function (optional) Entity to retrieve (required) Constraint (optional) Attribute to retrieve (optional)
avg //Sales.Order [IsPaid = true()] /TotalPrice

Element B describes the core of each query and consists of a description of the object being retrieved. This segment always starts with two forward slashes ‘//’ and includes the name of the entity you wish to access preceded by the module containing the entity separated by a period. E.g. //Sales.Customer would return all objects of entity ‘Customer’ in the module ‘Sales’.

Element C of a query is optional and contains one or more constraints to restrict the data being retrieved.

Consider the following query:

//Sales.Customer[Name='Jansen']

The constraint is clearly visible between brackets and restricts the objects retrieved to those for which the attribute ‘Name’ equals ‘Jansen’. Objects with any other name than Jansen are excluded from the list. The number of possible constraints on a single query is unlimited. For more information on how to add and manipulate these constraints, see XPath Constraints.

Element D of a query is optional and specifies an attribute of the retrieved entity. This option is rarely used in Studio Pro itself as all data is stored in objects, making it cumbersome and needlessly complicated to deal with a list of single attribute. However, various Java actions have use of such lists. Also, this functionality can be used in conjunction with Part A to create aggregates of certain attributes easily.

Element A of a query is optional and specifies an aggregation. Element A can be one of the following functions: avg, count, max, min and sum. With the exception of ‘count’, each of these functions require that a particular attribute is specified in element D.

3 Tokens

For details, see XPath Tokens.

4 Operators

For details, see XPath Operators.

5 Functions

The following XPath functions are available:

6 Example

How to find the right path to XPath