I'm trying to figure out how to work effectively with data working through Netlify CMS
My site will be on NextJS
For example I create a collection Posts collection type Folder I am entering data through netlify cms, several files are being created in the github repository.
And now I need to get a list of posts with title, preview image, and a short description.
Question 1: What is the best way to get data from the Netlify collection that is stored in the github repository?
Question 2: How can I read list posts without reading every file?
I assume that you need to use a build hook and cache the data. But I don't have a concrete solution yet.