I’m trying to get a list of all posts with a certain custom taxonomy.
I know I can retrieve all the types of said custom taxonomy (genre) using the following:
const response = await libraries.source.api.get({
endpoint: "genre",
params: {
per_page: 100,
},
});
But what if I want all posts that have a genre property of “disco”?
Thanks
James