For debugging purposes your might want to display extensive logs from your Admin Backend API. To do so, simply add the following in your code:
.env...NODE_ENV=development
/models/index.js...mongoose.set('debug', true);
This can be useful to understand how queries are executed to display your collections or relationships.