cloudant Questions

1

I want to store users' private information on a CouchDB in Cloudant - i.e. each user should be able to read and update only his own document. Usually such information is saved in the _users db, but...
Gnarly asked 5/12, 2013 at 15:3

3

Solved

I'm getting set up with CouchDB on Cloudant, and I'm confused because Cloudant seems to do auth differently than regular CouchDB. Specifically, Cloudant seems to lack a _users database. I read the...
Definiens asked 4/8, 2013 at 4:27

2

I have the following documents: { _id: "123", type: "project", worksite_id: "worksite_1" } { _id: "456", type: "document", project_id: "123&qu...
Woodwind asked 12/12, 2018 at 21:58

1

Solved

Is document expiration field set with date-time or seconds or milliseconds? As I know it's seconds: "expiration": 1543086426, So 1543086426 = Saturday, November 24, 2018 7:07:06 PM Then why the...
Mannie asked 25/10, 2018 at 19:34

2

Solved

I am trying to fetch data from a rest API using AXIOS as below: require('dotenv').config(); const axios = require('axios'); var url = 'https://931eb067-05c0-492a-8129-48ebfc27d426-bluemix.cloudan...
Scaffold asked 25/8, 2018 at 13:49

3

Solved

Let's say I have these three documents: { "_id": "11111", "type": "template", "name": "person" } { "_id": "22222", "type": "template", "name": "place" } { "_id": "33333", "type": "template", "name...
Drifter asked 29/5, 2018 at 14:41

2

Solved

Is it possible to set $regex flags using Cloudant Query / CouchDB 2.0 Find? Specifically I want a case insensitive search and global would also be useful. In JavaScript I would do: db.find({ se...
Protoactinium asked 11/5, 2016 at 9:0

1

I am building a typical pagination that allows the user to click on a particular page number and view the results (similar to the google search result view). I am using the cloudant search API for ...
Cosh asked 27/8, 2017 at 19:1

2

I have a mango query: { "selector": { "age":{ "$eq": 22 } } } I want to know the number of documents that satisfy this criteria. I know we can use map reduce functions to achieve this, but...
Protoxide asked 27/4, 2017 at 12:24

5

Solved

This is a weird one. It's also a bit long so apologies in advance. update - it ended up being 2 problems see my answer below. Here's my error: EXCEPTION: this.svg.selectAll(...).data(...).enter is...
Moribund asked 25/1, 2017 at 3:18

1

Solved

I'm playing with Mango queries on a CouchDB 2.0 instance, through the fantastic pouchdb-find. A few times I got the dreaded no matching index found, create an index to optimize query time warning ...
Antecedency asked 18/11, 2016 at 21:42

4

Solved

I am trying to connect to my CouchDB database on Cloudant using Node.js. This worked on the shell: curl https://weng:[email protected]/my_app/_all_docs But this node.js code didn't work: ...
Preparedness asked 1/11, 2010 at 15:31

3

Solved

Assuming configuring couchDB locally, how and where to create the search index similarly to Cloudant on Bluemix?
Donielle asked 18/5, 2016 at 8:22

3

Solved

Switching from mongo to pouchdb (with Cloudant), i like the "one database per user" concept, but is there a way to create multiple collections/tables per database ? Example - Peter - History -...
Calamity asked 28/4, 2016 at 11:26

2

Solved

I am developing mobile apps(IOS), I have read couchDB documentation to access it using HTTP Api, But 1.how do I implement user sign up,user sign in,email verification? just like parse.com i...
Rivet asked 12/2, 2016 at 18:16

2

Solved

I would like to query using cloudant db using selector, for example that is shown below: user would like to have loanborrowed whose amount exceeds a number, how to access the array in a cloudant se...
Sienese asked 21/10, 2015 at 14:51

1

I am using the CloudantClient libary to connect to Cloudant CouchDB. There are no exceptions thrown by this call. But after this, when I am making any call using CloudantClient, I am getting HttpHo...
Tbilisi asked 29/7, 2015 at 4:51

1

Solved

I tried to make an atomic bulk documents update with all_or_nothing set to true on Cloudant, but got the following response: [{"id":"7b75974f73c4230047b96b5272b696fd","rev":"1-e9b78ecba4c4ac29a97...
Ormand asked 10/4, 2015 at 6:35

1

Solved

I have documents across 2 different databases: fruits, vegetables. It's easier for me to keep the databases separated. Now, suppose I want my user to search from any combination of these databases...
Counterproductive asked 13/2, 2015 at 14:45

1

Solved

Some developers who have a good knowledge of querying SQL databases struggle to implement the equivalent query patterns in Cloudant/CouchDB. How can these developers translate their SQL knowledge ...
Towrey asked 5/2, 2015 at 9:5

2

We have used CouchDB in production, mainly building apps in controlled environments. Most times, we use a middle-ware library to make direct calls onto couchdb/cloudant, hence avoiding direct (Fron...
Chlo asked 3/9, 2014 at 7:38

1

Solved

Using /_changes?filter=_design I can get all the changes for design documents. How do I get all the changes for documents only? Is there such a thing like /_changes?filter=_docs_only ???
Uncovered asked 18/5, 2014 at 10:42

2

Solved

So when a document is deleted, the metadata is actually preserved forever. For a hosted service like cloudant, where storage costs every month, I instead would like to completely purge the deleted ...
Integrity asked 5/4, 2014 at 1:35

3

Solved

I am collecting a lot of really interesting data points as users come to my Python web service. For example, I have their current city, state, country, user-agent, etc. What I'd like to be able to ...
Reticulate asked 31/10, 2013 at 4:30

2

Solved

I'm planing on having my database stored in Cloudant. Is it safe to use local CouchDB during development, testing and staging of our application with knowledge that everything works locally should ...
Kyle asked 8/8, 2013 at 11:4

© 2022 - 2024 — McMap. All rights reserved.