@Pau, Thank you for the prompt response.
My goal is to be able to provide editors the ability to add multiple "subdirectories" so as to be able to match the URLs that they desire.
You wrote this guide on hierarchical content which gave me the hope that I could make this work.
In particular, your statement that:
To allow a child document to have multiple parents or categories, modify the child custom type:
Add a Group field
Add a Content Relationship field inside the group
This will allow you to add as many parents or categories.
I now believe it must be possible. When I look at the route resolver docs though, I don't see how I could have more than 1 subdirectory (or parent folder) for a page.
...
// prismicio.js with route resolver configured for 1 optional content relationship in the slug
{
type: 'page',
path: '/:subdirectory?/:uid',
resolvers: {
subdirectory: 'subdirectory',
},
},
Also, I believe (and perhaps you can confirm) that this won't work within the file below
/pages/[uid].js
Instead, it must be in a catch all
/pages/[...uid].js
I look forward to your wisdom/experience on this!
-Neil