right now the tags in mdx files are stored as a comma seperated string. This is proving to be in-efficient in many ways.
we have to update the arrays to a YAML format (or something similar).
It turns out that when you update the array to a YAML format in mdx files, Gatsby automatically starts updating the schema.
But that is taking too long on my machine (more than 45 mins). I am guessing because we have so many nodes, not sure.
@dennyabrain maybe whenever you get time, you can try this out on your machine.
right now the tags in mdx files are stored as a comma seperated string. This is proving to be in-efficient in many ways.
we have to update the arrays to a YAML format (or something similar).
tags: - Tag1 - Tag2It turns out that when you update the array to a YAML format in mdx files, Gatsby automatically starts updating the schema.
But that is taking too long on my machine (more than 45 mins). I am guessing because we have so many nodes, not sure.
@dennyabrain maybe whenever you get time, you can try this out on your machine.