ie:
select from V where name like '%this%'
The server doesn't like it. Any alternative syntax?
Possible solution is:
select from V where name like '%25this%25'
Notice the escape syntax %25. This works with OrientDB 2.0-M2