Brian Walters
Brian Walters
@willrowe https://twigfiddle.com/3yjwsw My example above in a twigfiddle. The exception I get in twig.js is: `TwigException: Can't access a key links on an null or undefined object.`
Ran into the same problem. I use `|default` all the time to set a variable to null if it could be undefined in the context. This allows for good strict...
You can try using the `indexable_callback` On your entity, put a function like this: ``` public function shouldIndex() { return true; # do your date comparison here. } ``` In...