Search code examples
orientdb

Sending % over REST causes 505 response


ie:

select from V where name like '%this%'

The server doesn't like it. Any alternative syntax?


Solution

  • Possible solution is:

    select from V where name like '%25this%25'
    

    Notice the escape syntax %25. This works with OrientDB 2.0-M2