From bcede13e20c581f480ff1afdf0a0bc926e76eccd Mon Sep 17 00:00:00 2001 From: Rachael Shaw Date: Wed, 25 Nov 2020 17:03:04 -0600 Subject: [PATCH] Add another link to the mongo tutorial docs --- sails-docs/tutorials/mongo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sails-docs/tutorials/mongo.md b/sails-docs/tutorials/mongo.md index c106c0df2..52761c122 100644 --- a/sails-docs/tutorials/mongo.md +++ b/sails-docs/tutorials/mongo.md @@ -57,7 +57,7 @@ For many apps, that's all you'll need-- from "hello world" to production. Even To access the lower-level “native” MongoDB client directly, use the [`.manager`](https://sailsjs.com/documentation/reference/waterline-orm/datastores/manager) property of the [datastore instance](https://sailsjs.com/documentation/reference/application/sails-get-datastore). -As of `sails-mongo` v2.0.0 and above, you can access the [`MongoClient`](https://mongodb.github.io/node-mongodb-native/3.5/api/MongoClient.html) object via `manager.client`. This gives you access to the latest MongoDB improvements, like `ClientSession`, +As of `sails-mongo` v2.0.0 and above, you can access the [`MongoClient`](https://mongodb.github.io/node-mongodb-native/3.5/api/MongoClient.html) object via `manager.client`. This gives you access to the latest MongoDB improvements, like [`ClientSession`](https://mongodb.github.io/node-mongodb-native/3.5/api/ClientSession.html), and with it, transactions, [change streams](https://mongodb.github.io/node-mongodb-native/3.5/api/ChangeStream.html), and other new features. ```js