my inputs:
mongo --port 27000 -u “m103-admin” -p “m103-pass” --authenticationDatabase “admin”
.
.
use admin
.
.
mongoimport --db applicationData --collection products --port 27000 --username “m103-application-user" --password “m103-application-pass" –authenticationDatabase admin --file “/dataset/products.json"
i get error:
2020-07-04T12:55:23.346+0000 E QUERY [js] SyntaxError: missing ; before statement @(shell):1:14
and of course in the tests
Did you import the dataset into the ‘products’ collection of the ‘applicationData’ database?
what am i missing ?