You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the "Relate your MongoDB deployment" pages for channels 5/stable and 6/edge, the collections names are mismatched. At the first part it says to create it as "test-collection" and right under it, it is being used as "test_collection" with an underscore rather than a hyphen.
"""
This is the name of the database we specified when we first deployed the data-integrator charm. To create a collection in the “test-database” and then show the collection enter:
db.createCollection("test-collection") <----- Here
show collections
Now insert a document into this database:
db.test_collection.insertOne( <----- Here
{
First_Name: "Jammy",
Last_Name: "Jellyfish",
})
You can verify this document was inserted by running:
db.**test_collection**.find() <----- Here
The text was updated successfully, but these errors were encountered:
In the "Relate your MongoDB deployment" pages for channels 5/stable and 6/edge, the collections names are mismatched. At the first part it says to create it as "test-collection" and right under it, it is being used as "test_collection" with an underscore rather than a hyphen.
"""
This is the name of the database we specified when we first deployed the data-integrator charm. To create a collection in the “test-database” and then show the collection enter:
Now insert a document into this database:
You can verify this document was inserted by running:
The text was updated successfully, but these errors were encountered: