1

In a ravendb-studio I like to use a RQL-query to query for documents where an property $type has some value.

I tried something like

from EventLogEntries where $type in ("...", "...")

But it throws an error, that it can't parse the where clause. Any one a suggestion how to correct the query?

pvill
  • 185
  • 11

1 Answers1

1

It seems it is possible to put the property within qoutes

from EventLogEntries where '$type' in ("...", "...")

returns the expected results

pvill
  • 185
  • 11