GraphQL MongoDB Mongoose populate field not getting multiple categories
I am using GraphQL MongoDB Mongoose together and I have 2 collections .. users and categories like below. Category.js const mongoose = require('mongoose'); const Schema = mongoose.Schema; const categorySchema = new mongoose.Schema({ title:{ type: String, required: true }, userid: {…