Created
October 14, 2020 05:41
-
-
Save aershov24/1d539f4afa178c7e71c588b57df39305 to your computer and use it in GitHub Desktop.
Markdium-25 NoSQL Interview Questions (ANSWERED) You Must Know In 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
_id: "4c6b9456f61f000000007ba6" | |
title: "Bar", | |
body: "Is this thing on?", | |
tags: [ "test", "trivial" ], | |
comments: [ | |
{ key: 1, author: "joe", body: "Something cool" }, | |
{ key: 2, author: "xxx", body: "Spam", deleted: true }, | |
{ key: 3, author: "jim", body: "Not bad at all" } | |
], | |
history: [ | |
{ | |
who: "joe", | |
when: 20160101, | |
what: { title: "Foo", body: "What should I write?" } | |
}, | |
{ | |
who: "jim", | |
when: 20160105, | |
what: { tags: ["test", "test2"], comments: { key: 3, body: "Not baaad at all" } | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment