Query JSON with JMESPath#
JMESPath is a query language for JSON that you can use to extract and transform elements from a JSON document. For full details of how to use JMESPath, refer to the JMESPath documentation.
The jmespath()
method#
n8n provides a custom method, jmespath()
. Use this method to perform a search on a JSON object using the JMESPath query language.
The basic syntax is:
1 |
|
1 |
|
To help understand what the method does, here is the equivalent longer JavaScript:
1 2 |
|
Expressions must be single-line
The longer code example doesn't work in Expressions, as they must be single-line.
object
is a JSON object, such as the output of a previous node. searchString
is an expression written in the JMESPath query language. The JMESPath Specification provides a list of supported expressions, while their Tutorial and Examples provide interactive examples.
Search parameter order
The examples in the JMESPath Specification follow the pattern search(searchString, object)
. The JMESPath JavaScript library, which n8n uses, supports search(object, searchString)
instead. This means that when using examples from the JMESPath documentation, you may need to change the order of the search function parameters.
Common tasks#
This section provides examples for some common operations. More examples, and detailed guidance, are available in JMESPath's own documentation.
When trying out these examples, you need to set the Code node Mode to Run Once for Each Item.
Apply a JMESPath expression to a collection of elements with projections#
From the JMESPath projections documentation:
Projections are one of the key features of JMESPath. Use it to apply an expression to a collection of elements. JMESPath supports five kinds of projections:
- List Projections
- Slice Projections
- Object Projections
- Flatten Projections
- Filter Projections
The following example shows basic usage of list, slice, and object projections. Refer to the JMESPath projections documentation for detailed explanations of each projection type, and more examples.
Given this JSON from a webhook node:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
|
Retrieve a list of all the people's first names:
1 2 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
Get a slice of the first names:
1 2 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
Get a list of the dogs' ages using object projections:
1 2 |
|
1 2 3 4 5 6 7 8 9 10 11 12 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
Select multiple elements and create a new list or object#
Use Multiselect to select elements from a JSON object and combine them into a new list or object.
Given this JSON from a webhook node:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
|
Use multiselect list to get the first and last names and create new lists containing both names:
1 2 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
An alternative to arrow functions in expressions#
For example, generate some input data by returning the below code from the Code node:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
|
You could do a search like "find the item with the name Lenovo and tell me their category ID."
1 |
|