How to use the couchbase.SpatialQuery function in couchbase

To help you get started, we’ve selected a few couchbase examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github dsfields / couchbase-promises / tests / unit / couchbase.js View on Github external
it('should reference native couchbase.SpatialQuery', (done) => {
      assert.strictEqual(couchbase.SpatialQuery, nativeCouch.SpatialQuery);
      done();
    });
  });
github dsfields / couchbase-promises / lib / couchbase.js View on Github external
  static get SpatialQuery() { return couchbase.SpatialQuery; }
  static get ViewQuery() { return couchbase.ViewQuery; }