Shopify Check Order Tags (Order Input)
This action evaluates whether a given Shopify order’s tag list contains specified tags. It returns the full set of tags found on the order and flags indicating if all or at least one of the target tags are present.
Inputs
Name | Type | Description |
---|---|---|
Tags | List | The list of tags to verify against the order. |
Shopify Order | Object | The Shopify order object to inspect. |
Case Sensitive | Boolean | Whether tag matching should consider case. |
Outputs
Name | Type | Description |
---|---|---|
Order Tags | List | All tags present on the order. |
Includes All Tags? | Boolean | true if every tag in Tags is found in Order Tags. |
Includes At Least One? | Boolean | true if at least one tag in Tags is found in Order Tags. |
Notes
- When Case Sensitive is
false
, both input tags and order tags are compared in lowercase. - Empty or missing Tags list results in
Includes All Tags? = true
andIncludes At Least One? = false
.
Updated about 24 hours ago