I am having a hard time fetch the different custom_types which should be nested at the same level.
In other words, all 5 custom_types will be nested after the subfolder "/jobs/custom_type":
jobs/title
jobs/city
jobs/xyz
...
Is there a more DRY & neat way to set up such a configuration?
Here's what I have failing so far in pages > jobs > [uid.tsx]
When we decide on the site structure, we maintain the category/group as the parent of the child page. For example:
If I have jobs as the category, the structure could be jobs/uid
If I have the city as the group, the structure could be city/uid
and so on.
That differentiates the exact category with respect to the custom types.
The best possible way will be to add the category above the uid.
However, alternate ways exist, such as using a dot with the UID to differentiate the category.
For example:
If the structure has /jobs/newyork.city as the page. You need to check the value of uid in /jobs/uid to see the category after the dot value in the front end.
I hope that answers your questions, and let me know if you have any further questions.
Although, we really wanted to avoid having various subfolders for our different custom types, so we have to make multiple custom type requests in the same jobs > [uid].ts file:
I guess it's not prismic-friendly, but product wise we need it to be nested such as jobs/uid_of_custom_type_1, jobs/uid_of_custom_type_2, etc.