What data in MongoDB after npm run seed?

After running npm run seed, what collections should be in the database?

The Quick commands reference in the docs state that running the command “Parses all the challenge markdown files and inserts them into MongoDB.” But I only see user and sessions collections in the database.

Hello there,

That description sounds outdated.

npm run seed does the following:

  • deletes the data in user
  • deletes the tokens in UserToken
  • inserts the fixture user data into user

Hope this helps

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.