I'm having a Nuxt project where I use Prismic CMS.
I need to get all the tags from a specific document type
example: get all tags from "blog-post" document type or get all tags from "project" document type.
In the documentation I could not find how to query to my needs.
I tried with this query but I get all the tags from the API, including tags I dont need.
Yeah normally if your doing an extra query like this you might be worried about performance, but given Nuxt.js's static deployment capabilities this shouldn't be an issue.
A good idea for this might be to do the query for these tags in the vuex store so that the query is done once as is available globally.