Is possible to use IN
statement in DocumentDB query? Like:
SELECT * FROM c where c.FormId in(1,2,3,4,5,6,7,8,9,10)
I don't want use OR
because there are limits (only 6)
where (c.FormId =1 or c.FormId= 2 or c.FormId =3
Or c.FormId = 4 Or c.FormId=5 Or c.FormId=6)