All Questions
Tagged with document-database javascript
5 questions
0
votes
2
answers
134
views
Remove a child object in Fauna DB
I need to remove a child object in FQL. Let me demonstrate with the following example:
{
"1": {
"name": "test"
},
"2": {
"name&...
2
votes
2
answers
349
views
How could I filter by date and location availability in firestore?
In my Firebase project I need to query all users who are available on a certain date at a certain city and sort by some other criteria.
Since we can't use multiple "array-contains" operations in one ...
1
vote
1
answer
61
views
Insert a nested document into a DocumentDB doc using Node.js
what's the best way to insert a nested document into the following?
{
"id": "3af62b94-2031-4b85-9fd3-e13e7217d382",
"Email": "[email protected]",
"Name": "test",
"OrgRoles": null,
...
0
votes
1
answer
1k
views
Node js parameterized query for DocumentDB
Can anyone tell me which node module I have to require to parameterize queries for DocumentDB in Node.js?
I have structured the query very similar to this Microsoft example. I am using the ...
6
votes
0
answers
3k
views
Join multiple databases with CouchDB?
Tech being used:
Node.js
Nano
CouchDB
Disclaimer:
I am very new to CouchDB. I am able to query views with Node.js and Nano just fine. I am looking for more of a conceptual solution then a syntax ...