Giter Club home page Giter Club logo

docs-sdk-nodejs's Issues

Typo Error in Sub-Document Page

I was going through the documentation and try the examples given. I found an error in the Sub-Document Page of Documentation.
The issue was in part:

var result = await collecton.LookupIn('customer123', [
couchbase.LookupInSpec.exists('purchases.pending[-1]')
]);
console.log('Path exists? ', result.content[0]);

which should be like below

var result = await collection.lookupIn('customer123', [
couchbase.LookupInSpec.exists('purchases.pending[-1]')
]);
console.log('Path exists? ', result.content[0]);

That means:
collecton.LookupIn -> collection.lookupIn

first parameter of .arrayAppend must be a valid path or an empty sting

Hi,
seems there is an error in doc - passing false as a first parameter gives "path mismatch" error

await collection.mutateIn("my_array", [
couchbase.MutateInSpec.arrayAppend(false, "", "elem1", "elem2", "elem3"),
]);
// the document my_array is now ['some_element', 'elem1', 'elem2', 'elem3']

Server version:
Enterprise Edition 6.6.0 build 7909
SDK: NodeSDK 3.1.2

bucket.viewQuery should be async in the documentation

The docs for querying views shows this :
var result = bucket.viewQuery('beers', 'by_name', { range: { start: 'A' }, limit: 10, })

shouldn't be :
var result = await bucket.viewQuery('beers', 'by_name', { range: { start: 'A' }, limit: 10, })
?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.