Pretty straightforward (I hope). I\'d like to be able to use the API endpoint and have it only return specified fields. I.E. something like this
http://local
You can use the select function if you are using MongoDB Database: await strapi.query('game-category').model.find().select(["Code"]) As you can see, I have a model called game-category and I just need the "Code" field so I used the Select function.