How do i create dynammic URLs

Hi @IKR :wave:

Does this video on dynamic collection pages help?

In the example below, you can see:

  1. when the user clicks on a car card
  2. they will be redirected to a “Selected car” page
  3. with the UUID of the Supabase record as a parameter

The reason I have the option to bind to a UUID parameter is because I added it at page level:

When the “Selected car” page loads, I fetch the collection for the car:

Which looks like this:

Note that, I can see the “From path in current page” variables because I am currently on the “Selected car” page. If I was on another page, I wouldn’t be able to see that because the “Current page” would not have the information I’m looking for.

Does that make sense?