We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad11adc commit 956123aCopy full SHA for 956123a
components/mongodb/sources/new-document/new-document.mjs
@@ -95,10 +95,10 @@ export default {
95
},
96
};
97
const documents = await collection.find(query).sort(sort)
98
- .toArray(); console.log(documents);
+ .toArray();
99
const docs = [];
100
for (const doc of documents) {
101
- const ts = this.getTs(doc); console.log(ts);
+ const ts = this.getTs(doc);
102
if (!(ts > lastTs) || (max && count >= max)) {
103
break;
104
}
0 commit comments