I am building a headless site with nuxt3 and netlify, I am using shopify for the ecommerce backend.
When you want to reset a password for a customer there is a graphql mutation and that mutation takes in an input of the customer’s email and send an email to the customer.
Once the customer receives the email, and clicks the link “Reset your password” from within the email, they are redirected to the following url:
I can’t figure this out and it seems I am doing something wrong because I can get resetToken to come through and customerId to come through but syclid is always just :syclid
Yea, that worked. Can you explain why this works because the query parameters docs state
While our service automatically passes on all query string parameters to destination paths for redirects with 200 , 301 , and 302 HTTP status, you can also choose to define a redirect path based on a specific parameter or combination of parameters.
I was under the impression that I was pulling the placeholders off of the original url and using them as query params and that the other query params would be automatically forwarded
My understanding (others can correct me if I am wrong) is that yes, the query parameters would get passed along except that you are overriding this by appending query parameters on the to URL.