I naively tried this while querying a table:
rows = [ x['title'] for x in table.where("""title[-11:] == 'string ends'""") ]
resulting in: TypeError: 'VariableNode' object has no attribute 'getitem'
Reading up on Condition Syntax doc, there is no mention of slicing.
Am I to conclude I can only query on full strings?
Thanks!