GraphQL filter by "jcr:content/metadata/cq:tags"
Is it possible to filter content fragments by "jcr:content/metadata/cq:tags" ?
Is it possible to filter content fragments by "jcr:content/metadata/cq:tags" ?
Hope you checked this sample queries list https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/headless/graphql-api/sample-queries.html?lang=en
I don't see the way to filter out based on Metadata. You can do it with the data stored in Master node as mentioned by Sachin below. Or you can use Query Builder to read that info.
You can just the output with all the tags added in Metadata in the json and filter it in the front end. That stringArrayMetadata will give the tags
_metadata {
stringMetadata {
name,
value
}
stringArrayMetadata {
name,
value
}
}Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.