Anders Søgaard
Anders Søgaard
Duplicate/Related https://github.com/Shopify/liquid/issues/1491
Not sure why Rubocop is failing 🤷🏻♂️
> I’m not a ruby developer but it seems you also added a nice feature on the reject filter allowing to filter nested objects. This should most likely be backported...
How about just `if` and `unless` ? ``` {%- assign somevar | if: 'something' -%} {%- assign somevar | if: 'something', else: 'somethingelse' -%} {%- assign somevar | if: 'something',...
> > This shouldn't bring any breaking changes to Shopify, but could bring breaking changes to other platforms using Liquid, as it won't consider attributes with dots. > > I'm...
> I don't mean storing JSON in a string type field, I mean there is native support for JSON metafield types. The primary reason for that json type is so...
Does it make sense to add this nested feature to other filters, such as `sort`, `uniq` etc?
A PR for dot notation in where filter is open here https://github.com/Shopify/liquid/pull/1436
Can't quite see how this is duplicate. Could this be solved by implementing a `select` directive? ```php class User extends Model { public function getNameAttribute() { return $this->first_name . '...
> We might need a mechanism to make the optimized selects opt-in per field / type. Otherwise, it could be quite hard to migrate existing applications towards it, since now...