'countDocuments() is not working in api call

I am trying to get a count of products using api calls but in postman its keep loading

router.get(`/get/count`,  async (req, res) => {
  const productCount = await Product.countDocuments((count)=>count)
  if (!productCount) {
    res.status(500).json({ success: false });
  }
  res.send({
    productCount: productCount
  });
});

(node:28030) UnhandledPromiseRejectionWarning: MongooseError: Query was already executed: Product.countDocuments({})

without async and await also its not working

I try to catch the error and i got this error in postman

{
   "success": false,
   "error": "Query was already executed: Product.countDocuments({})"
}

code to catch error:

router.get(`/get/count`,   (req, res) => {
   Product.countDocuments((count)=>count).then((pcount)=>{
   if(pcount){
     return res.status(200).json({success:true})
   }else{
      return res.status(404).json({success:false})
   }
   }).catch((err)=>{
     return res.status(400).json({success:false, error:err.message})
   })

});


Solution 1:[1]

I think in Mongoose operations you want to either await or provide a callback, but not both. Attempting to do both causes it to internally execute the query twice.

Try just:

const productCount = await Product.countDocuments();

Solution 2:[2]

If you want to count all the products in your product collection, try this

db.product.countDocuments({})

Solution 3:[3]

router.get(`/get/count`,  async(req, res) => {
  let productCount = await Product.countDocuments();

  if(!productCount){
    res.send(500).json({success:false})
  }

  res.send({productCount: productCount})
});

Solution 4:[4]

Two way you can do that

Try it you don't need use callback (count)=>count

const express = require('express')
const router = express.Router();
const {Product} = require('../models/products')
const {Category} = require('../models/category')
const catchAsyncErrors = require('../middleware/catchAsyncError')
const mongoose = require('mongoose');


// Get all product 
router.get(`/`, async (req, res) => {
    let productList = await Product.find().populate('category')

    if(!productList) {
        res.status(500).json({
            success: false
        })
    }
    res.status(200).json({
        success: true,
        count: productList.length,
        productList

    });
})

router.get(`/count`, catchAsyncErrors(async(req, res) => {
    const countProductList = await Product.countDocuments();

    if(!countProductList){

        res.status(500).json({
            success: false
        })
    }
    res.send({
        success: true,
        countProduct: countProductList
    })

}))

Solution 5:[5]

You don't need to include ((count)=>count).
Use Product.countDocuments() instead

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 David
Solution 2 anon03519124
Solution 3 Félix Paradis
Solution 4 Omor Faruk
Solution 5 Tyler2P