MESA Docs
MESA Homepage
  • Welcome to MESA
    • Installing MESA
    • Dashboard
    • Core Concepts
    • Getting Help
  • Templates
    • Template Library
    • Installing & Editing
  • Workflow Builder
    • Triggers
    • Actions
    • Fields
      • Variables
      • Formatting Variables
      • Liquid Templating
    • Testing
  • Workflow Activity
    • Tasks
      • Troubleshooting
      • Replay
    • Logs
    • Time Travel
  • Best Practices
    • Set Titles & Descriptions
    • Track Time Saved
    • Enable Failure Notifications
    • Avoid Infinite Loops
  • Going Further
    • Plans & Billing
    • Notifications
    • Credentials
    • Understanding the Queue
    • Export & Import Workflows
    • Platform Thresholds & Limits
  • Built-in Tools
    • Activity Log
    • AI
    • API
    • Approval
    • MCP
    • Custom Code
      • Libraries
        • MESA SDK
        • Filter
        • Loop
        • Transform
        • oAuth
        • Shopify
        • ShopifyGraphql
      • FAQ
    • Data
    • Delay
    • Email
    • Filter
    • Form
      • Configure
      • Going Further
      • Technical Notes
    • FTP
    • Image
    • Loop
    • Package Tracking
    • Paths
    • Schedule
    • Scraper
    • SMS
    • Transform
    • Virtual Output
    • Weather
    • Web Request
    • Webhook
  • Apps
    • Airtable
    • Amazon S3
    • Asana
    • Blog Studio
    • ChannelApe
    • Claude
    • ChatGPT
    • Dall-E 2
    • Delighted
    • Digital Humani
    • Discord
    • DocuSign
    • Dropbox
    • Etsy
    • Facebook
    • Fera.ai
    • Gatsby
    • Gmail
      • Send Email
    • Google Analytics 4
    • Google Analytics UA
    • Google Calendar
    • Google Drive
    • Google Forms
    • Google Sheets
      • Add Row
      • Query Rows
      • Update Row
      • Row Created
      • Row Updated (Advanced)
      • Creating New Spreadsheets
      • Technical Notes
    • Gorgias
    • Govalo
    • Help Scout
    • Hubspot
    • Infinite Options
    • Intercom
    • IPDetective
    • Judge.me
    • Katana
    • Klaviyo
      • API Deprecation
    • Loop Returns
    • Loyalty Lion
    • Mailchimp
    • Mailgun
    • Mandrill
    • Mantle
    • Notion
    • Odoo
    • Omnisend
    • Page Studio
    • Pinterest
    • Printful
    • PrintNode
    • QuickBooks
    • Rebuy
    • Recharge
    • Remove.bg
    • Returnly
    • Rivo
    • Salesforce
    • Segment
    • Sendlane
    • Shippo
    • ShipStation
    • Shopify
      • Technical Notes
        • Configuring Your Payload
        • Modifying and Filtering Get Lists
        • Parameters
        • Error Codes
        • Accuracy of orders_count Variable
        • Accuracy of Count Products Action
        • Using the Gift Cards API
        • How to Find a Specific Record in the Testing Interface
        • Order, Customer, and Product Updated Trigger Frequency
    • Shopify Flow
    • Shopify Plus
    • Shopify Retail POS
    • Skio Subscriptions
    • Slack
    • Smartrr
    • Smile.io
    • Square
      • Updating Inventory
      • Frequently Asked Questions
    • Stamped.io
    • Stripe
    • Thanks.io
    • TikTok
    • Tracktor
    • Twilio
    • Uploadery
    • Wonderment
    • Xero
    • Yotpo
    • Yotpo Loyalty
  • For developers
    • Admin API
    • Command Line Interface
    • Embedding templates
  • Frequently asked questions
    • Why isn't the log search returning logs with the search I entered?
    • Is it possible to handle errors or retry steps?
    • How do I handle a failed task?
    • Does MESA auto-save workflows?
    • Can I Use Apps That Don't Have a MESA Connector?
    • Why is my workflow action adding the same data each time it occurs?
    • How do I cancel automations that are already in progress?
    • How do I cancel my MESA subscription or 7-day trial?
    • Can you import code from npm in custom code?
    • Do you have a Slack Community?
Powered by GitBook
On this page
  • Filter()
  • process(a, b, comparison, additional, options)
  • doProcessAdditional(additional)
  • normalizeValue(value)
  • runCompare(a, b, comparison)
  • stringify(a, b, comparison, additional)
  • printableString(str)
  • isEmpty(str)

Was this helpful?

  1. Built-in Tools
  2. Custom Code
  3. Libraries

Filter

vendor/Filter.js

Filter()

Procecsses filter conditions / values

Returns

  • Void

process(a, b, comparison, additional, options)

Processes filter comparison values, and comparison

Parameters

Name
Type
Description

a

string

b

string

comparison

string

additional

array

Additional operator, a, b, and comparison fields

options

object

options.setTaskStatus

boolean

If the task statis should be

options.strLabel

string

The text to set as the task's label

Returns

  • boolean

doProcessAdditional(additional)

Prevent empty context.trigger.metadata.additional values from being processed eg. metadata.additional: [{operator: 'and', comparison: 'equals'}]

Parameters

Name
Type
Description

additional

Array

Returns

  • boolean

normalizeValue(value)

Convert comparison value from a string to something more comparable

Parameters

Name
Type
Description

value

string

Returns

  • string boolean number

runCompare(a, b, comparison)

Runs compare with two values

Parameters

Name
Type
Description

a

string boolean number

b

string boolean number

comparison

string

Returns

  • boolean

stringify(a, b, comparison, additional)

Processes filter comparison values, and comparison

Parameters

Name
Type
Description

a

string boolean number

b

string boolean number

comparison

string

additional

array

Additional operator, a, b, and comparison fields

Returns

  • string

printableString(str)

Replace '' NaN with the string (empty), handle other non-string types

Parameters

Name
Type
Description

str

string boolean number

Returns

  • string

isEmpty(str)

Determine if a variable is empty. Definition of empty: undefined, null, empty string "", empty array [], empty object {}

Parameters

Name
Type
Description

str

string boolean number

Returns

  • boolean

PreviousMESA SDKNextLoop

Last updated 6 months ago

Was this helpful?