mongoSheet
Home Docs Install
Test Setup
Trying mongoSheet before actually using it is a great option. You will get to know what the addon is, and whether it suits your need in less time. Once you think that the addon has options that you are looking for then you can go ahead and do the actual setup to connect to your MongoDB installations.
Setup sample / family
Parameter Value
Connection Name sample/family [This can be anything that you wish]
Data API URL https://ap-south-1.aws.data.mongodb-api.com/app/data-wbmsz/endpoint/data/v1
API Key 9dlSWU7HTWm1Zh00kVnHL4Bpr3oiE1C9ZV6mreFLG7AYe4y0EuBirYmls6rf0rv0
Cluster test-cluster
Database sample
Collection family
Schema
      
                  
  {
	  father: {
		  name: ** // string
		  age: ** // number
	  },
	  mother: {
		  name: ** // string
		  age: ** // number
	  },
	  phone: ** // number
	  kids: [
		  {
			  name: ** // string
			  dob: ** // date
			  height: ** // number
			  weight: ** // number
		  }
	  ]
  }