Command Reference

ProvendDB specific commands are implemented as mongoDB commands. They may be executed from any mongoDB client.

In the mongoDB shell, use the db.runCommand() helper function to execute commands:

mongodb >db.runCommand({getVersion:1});
{
	"ok" : 1,
	"response" : "The version is set to: 'current'",
	"version" : NumberLong(10108),
	"status" : "current"
}

Methods for executing commands in other languages are provided in the Developers guide.


What’s Next