Value Exists Node - Synthreo Pylon
Value Exists node for Pylon - branch or halt workflow execution based on whether a specified field or value is present in the current data context.
Overview
Section titled “Overview”The Value Exists node checks whether specific data values are present in your workflow and routes execution based on the result. It acts as a conditional checkpoint: if the specified value exists and is non-empty, the workflow continues along the “found” path; if the value is absent or empty, the workflow follows the “not found” path (or stops, depending on how the downstream connections are configured).
Use this node to validate data before processing it, to guard against missing fields that would cause errors in downstream nodes, and to create conditional branching logic based on data availability.
What This Node Does
Section titled “What This Node Does”The Value Exists node examines the data flowing through the workflow at that point and checks whether a specific value is present and non-empty. The check can be applied to the entire input from a previous node (to verify any data exists) or to a specific named field within the data (to verify a particular property has a value).
Common uses include:
- Validating that required fields are populated before sending emails or notifications
- Checking whether a database lookup returned any results before attempting to use those results
- Guarding conditional branches so that only records with complete data proceed to expensive processing steps
- Creating fallback paths when optional data is absent
Configuration Parameters
Section titled “Configuration Parameters”String Operation
Section titled “String Operation”- Field name:
checkOpId - Type: Dropdown
- Input Values - Checks whether the main data flowing into this node from the previous step contains any values at all
- Custom Getter - Checks whether a specific named property or field within the data exists and has a non-empty value
- Default: Input Values
- When to change: Choose “Custom Getter” when you need to check for the presence of a specific field (e.g., verifying that a customer record has an email address). Use “Input Values” when you simply need to confirm that the previous node produced any output.
Property Name (Custom Getter only)
Section titled “Property Name (Custom Getter only)”- Field name:
valueGetter - Type: Smart text field with dynamic suggestions (visible only when “Custom Getter” is selected)
- Default: Empty
- Description: The field or property to check. Compare it with the upstream data and available suggestions character by character. Runtime case sensitivity and the handling of unresolved paths are not established by the verified source; test the actual input shape.
- When to change: Enter the specific field name you want to validate whenever “Custom Getter” is selected. Use the smart suggestions to select from available property names and avoid typos.
Branching Logic
Section titled “Branching Logic”The verified port labels are In, Out, Yes and No. Use Yes and No for the condition’s branches.
Connect and test both branches with representative values. Do not assume a complete runtime truth table for absent fields, nulls, empty strings, zero or false from the port labels alone. Where users need a fallback response, wire it explicitly and verify the resulting trace and output.
Step-by-Step Configuration
Section titled “Step-by-Step Configuration”Basic Setup
Section titled “Basic Setup”- Drag the Value Exists node onto the workflow canvas and connect it to the upstream node.
- Open the configuration panel by clicking the node.
- In the String Operation dropdown, select your checking method:
- Choose Input Values to check whether any data came from the previous node.
- Choose Custom Getter to check a specific named field.
- If you selected Custom Getter, enter the field name in the Property Name field. Use the smart suggestions to select from available properties.
- Connect the node’s output paths to the appropriate downstream nodes.
Testing
Section titled “Testing”- Use the workflow test feature with sample data that includes both scenarios - data where the value exists and data where it does not.
- Verify that items with the value present follow the correct path and items without it follow the fallback path.
- Adjust the Property Name if the node is not matching what you expect.
Common Use Cases and Configuration Examples
Section titled “Common Use Cases and Configuration Examples”Guard Against Missing Email Before Sending
Section titled “Guard Against Missing Email Before Sending”Goal: Only send emails to customers who have a valid email address on record.
Configuration:
- String Operation: Custom Getter
- Property Name:
email - Connect the “Yes” path to the Send Email node.
- Connect the “No” path to a logging node or leave it unconnected to skip the item.
Check Whether a Database Query Returned Results
Section titled “Check Whether a Database Query Returned Results”Goal: Only proceed with AI analysis if the database lookup found matching records.
Configuration:
- Place a Value Exists node after the Input Database node.
- String Operation: Input Values
- Connect the “Yes” path to the LLM analysis node.
- Connect the “No” path to an Output Data node with a “No records found” message.
Validate a Required Order Field Before Processing
Section titled “Validate a Required Order Field Before Processing”Goal: Ensure every order has a shipping address before triggering fulfillment.
Configuration:
- String Operation: Custom Getter
- Property Name:
shippingAddress - Connect the “Yes” path to the fulfillment workflow.
- Connect the “No” path to a notification node that alerts the operations team.
Conditional AI Processing Based on Attachment Presence
Section titled “Conditional AI Processing Based on Attachment Presence”Goal: Run document analysis only when the user uploaded a file.
Configuration:
- String Operation: Custom Getter
- Property Name:
base64file - Connect the “Yes” path to the document processing node.
- Connect the “No” path to a text-only response node.
Chain Multiple Checks
Section titled “Chain Multiple Checks”When multiple fields must all be present before processing, place multiple Value Exists nodes in sequence, each checking one field. The data only reaches the processing step if it passes all checks. This pattern is more readable and maintainable than trying to validate many fields in a single step.
Best Practices
Section titled “Best Practices”- Place Value Exists nodes early in the workflow to catch missing data before it reaches expensive processing steps like LLM calls or external API requests.
- Always handle both output paths. At minimum, the “No” path should connect to a node that logs the skip, returns a fallback message, or flags the item for review.
- When using Custom Getter, verify the property name against the actual data structure by running a test and inspecting the output of the upstream node.
- Compare property names character by character, including capitalization, and inspect the upstream data. Treat this as an authoring check rather than a verified runtime case-sensitivity rule.
- For complex validation requiring multiple fields to exist, chain multiple Value Exists nodes rather than relying on a single check.
- Use descriptive node labels (via the node title or an adjacent Annotation node) to document what each Value Exists node is checking, especially in workflows with several conditional branches.
Troubleshooting
Section titled “Troubleshooting”Node always reports “No” even when the value is present
Section titled “Node always reports “No” even when the value is present”- Verify the Property Name spelling matches the actual field name exactly, including case.
- Run a test and inspect the output of the upstream node to confirm the property name and its value.
- Test the actual values involved, including absent fields and empty strings, and record which branch the node takes.
Inconsistent results across different data items
Section titled “Inconsistent results across different data items”- Check whether the data format and property spelling differ across items, such as
emailversusEmail. Inspect those cases rather than assuming their runtime behaviour. - Consider adding a transformation node upstream to normalize property names before the Value Exists check.
The workflow stops with no output when a value is missing
Section titled “The workflow stops with no output when a value is missing”- The “No” output path is likely not connected. Add a fallback node (Output Data with a default message, or a logging node) on the “No” path to ensure users always receive a response.
Integration Tips
Section titled “Integration Tips”- With Output Data nodes: Connect the No branch to an explicit fallback response and test it. Suppress Skipped Execution was removed and is not a supported way to guarantee a reply.
- With LLM nodes: Gate expensive LLM calls behind a Value Exists check to avoid processing incomplete records and wasting API credits.
- With Update Database nodes: Validate that key fields exist before attempting a database write to prevent failed operations due to missing required columns.

