We have a client that wants multi-level URLs (3 deep) on their website. To achieve this we created a SLUG field and updated the LinkResolver so that slugs work effectively.
However, when it comes to RichText fields there is a problem. The link data in those fields only ever returns...
"data": {
"id": "X3oe9xEAACIAZceQ",
"type": "page",
"tags": [],
"slug": "my-page",
"lang": "en-gb",
"uid": "my-page",
"link_type": "Document",
"isBroken": false
}
(Note, slug here seems to be the depreciated slug that Prismic used to use) So my question is, has anyone resolved this issue in React?
Or how does Prismic suggest we handle multi-level URLS effectively?