only - Liquid Filter Reference
On this page
Description
Returns all items in the list where the supplied property equals one of the supplied values
| Property | Value |
|---|---|
| Return Type | list |
| Category | lists |
Examples
liquid
{{ products | only: "type", "whitegoods" | map: "name" | join: ", " }}
Output: Fridgetastic 3000, Coldinator 500
liquid
{{ products | only: "type", "whitegoods", "computers" | map: "name" | join: ", " }}
Output: Fridgetastic 3000, Coldinator 500, Geronimo 9000, Y2K Amaze
liquid
{{ products | only: "name", "Y2K Amaze" | map: "name" | join: ", " }}
Output: Y2K Amaze