Skip to content
Log in

except - Liquid Filter Reference

On this page

Description

Returns all items in the list where the supplied property does not equal the supplied value

Property Value
Return Type list
Category lists

Examples

liquid {{ products | except: "type", "whitegoods" | map: "name" | join: ", " }}

Output: Geronimo 9000, Y2K Amaze, Elephant

liquid {{ products | except: "name", "Y2K Amaze" | map: "name" | join: ", " }}

Output: Fridgetastic 3000, Coldinator 500, Geronimo 9000, Elephant

liquid {{ products | except: "type", "whitegoods", "computers" | map: "name" | join: ", " }}

Output: Elephant

Was this article helpful?

Was this article helpful?