koopjs / koop-provider-marklogic

A Koop Provider that can be used to exposed data in MarkLogic via Esri feature services
https://koopjs.github.io/koop-provider-marklogic/
Other
6 stars 11 forks source link

Add support for "NOT IN" in the where clause #24

Closed jkerr5 closed 6 years ago

jkerr5 commented 6 years ago

Use the form op.ne("a", (1,2))

Also update the "in" operator to use this form op.eq("a", (1,2))

jkerr5 commented 6 years ago

Could not get the recommended op.ne and op.eq calls to work so had to stick with the op.or and op.not + op.or. Will create a new issue to fix once the correct API calls are determined.