Flex Gateway新着情報
Governance新着情報
Monitoring API Manager絞り込み式をオブジェクトのキーのリーフまたは Path
値に適用します。
オブジェクトのリーフ値は SimpleType
値または Null
値である必要があります。型の説明については、 「Core 型」を参照してください。
DataWeave バージョン 2.4.0 で導入されました。
名前 | 説明 |
---|---|
|
|
|
入力 |
次の例では、さまざまな入力での filterObjectLeafs
の動作を示します。
%dw 2.0
import * from dw::util::Tree
var myArray = [{name @(mail: "me@me.com", test:123 ): "", id:"test"},
{name: "Me", id:null}]
output application/json
---
{
a: {
name: "Mariano",
lastName: null,
age: 123,
friends: myArray
} filterObjectLeafs ((value, path) ->
!(value is Null or value is String)),
b: { c : null, d : "hello" } filterObjectLeafs ((value, path) ->
(value is Null and isObjectType(path)))
}