Table of Contents | ||||
---|---|---|---|---|
|
...
Description | Indicates whether the object has the specified property. In the 4.10 release, the in operator and get method can be used as a shorthand to test if an object has a property or get the value of a property with a default if it does not exist.
| ||||
---|---|---|---|---|---|
Syntax |
| ||||
Example | Expression: Result: Returns true if the object has the key "Id" Expression: To create a ternary conditional expression:
|
...
Description | Indicates whether the object has the specified property. This method is recommended to be used instead of the hasOwnProperty method when working with JSON-Path, especially when looking for fields nested deep within the object. This is handy since if you use the hasOwnProperty method, you would have to construct complex sub-expressions to check if the field exists. | ||
---|---|---|---|
Syntax |
| ||
Example | Expression: Result: Returns true if the object has the key "Id" |
isEmpty
Description | Returns true if the given object has no properties.
| ||
---|---|---|---|
Syntax |
| ||
Example | Expression: {}.isEmpty() Result: Returns true. Expression: { foo: 1 }.isEmpty() Result: Returns false. |
...
Expand | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||
A JSON Array of objects with unique/non-overlapping keys can be converted to an object using the extend object method along with a Spread Operator. The extend object method does so by creating objects dynamically from other objects passed in as arguments, the spread operator will have to be used to indicate that the elements of the array should be treated as the arguments to the function. The expression to be used is:
1. Input the array into Mapper Snap (this can be done using a JSON Generator Snap). For this example, the following array will be used:
2. The Mapper Snap must be configured as shown below. Notice the Expression and Target path fields.3. When executed, the output will be an object.
|