get fields

This block is part of the object group and was last modified in core v15.0.0.

Fields Selection Required

This block relies on fields that you selected to perform its data actions. You must manually select the fields you want to use in your flow using the fields selector modal. To access the modal, click the white button on the block.

Field Selection Required

This block requires field selection (out). You must manually select the fields you want to work with using the field selector modal. To access the modal, click the white button on the block.

get fields v15.0.0

Gets the selected fields from the given object.

In pins 2
  • object required
    object

    Object to select the selected fields from.

  • convert type v15.0.0
    condition

    When true, value out-pins stringify non-string sources (numbers, booleans, arrays, objects). Other pin types are unaffected. Defaults to false so existing blueprints keep their raw-passthrough behavior. • Hidden when unused

    Default false

Emits one out-pin per selected field with the value at that dot path, coerced to the pin's chosen type (numbers parsed from strings, conditions via JS truthiness, dates from unix seconds; value pins pass the raw value through unconverted). Missing or null paths emit nil, never type-zero defaults. With convert_type=true, value pins additionally stringify non-string sources (objects/arrays as JSON).

get multiple from object

get fields takes the document from get document and outputs one pin per selected field; here name is compared with a fixed value using ==, and the comparison drives a branch. This getter-plus-compare pair is the most common wiring in real blueprints.

Studio canvas example for the get fields block: reading fields off a document.

Commonly used with

One of the most-used blocks across production blueprints. It is most often wired together with:

  • create: feeds into this block. Creates a new function that can be executed using the given name.
  • get document: wired in both directions with this block. get a specific document based on the given GUID.
  • set fields: this block feeds into it. Generates an array of mutations based on the given filled fields.
  • new object: this block feeds into it. Builds a new object filled with the given fields.
  • ==: this block feeds into it. returns true if the two values are equal.
  • execute: this block feeds into it. Executes the given funcion and waits for it to be executed.

Version history

Introduced in v15.0.0.


Back to object Return to the main group to view all sub-groups Back to object Return to the group to view all blocks within this group