# let query filter rlike tests

FEATURE: filter- rlike expression  TODO implement this
background:
  type Flight struct {id int unique, wid string optional }  end
thenType: struct

---
SKIP: rlike full
given:
  insert Flight {id: 55, wid: 'battle' }
when:
  let x = Flight[wid like '%at%']
then:
value:a:Flight {
 vid:55
 vwid:'battle'
}

