注: 以下の翻訳の正確性は検証されていません。AIPを利用して英語版の原文から機械的に翻訳されたものです。

構造体フィールドの取得

サポートされているモード: バッチ、ストリーミング

構造体からフィールドを抽出します。

式カテゴリ: 構造体

引数

  • Locator - ['author', 'email'] のように複数のエントリを持つ内部要素を抽出します。
    StructLocator
  • Struct - 説明なし
    Expression<Struct>

出力タイプ: AnyType

例 1: 基本ケース

引数の値:

  • Locator: airline.id
  • Struct: struct
struct出力
{
airline: {
id: NA,
},
}
NA
{
airline: {
id: FE,
},
}
FE

例 2: 基本ケース

引数の値:

  • Locator: airline.id
  • Struct: struct
struct出力
{
airline: null,
}
null
{
airline: {
id: null,
},
}
null
nullnull