docs: fixes to read-only links + add examples for filtering by relations (#13218)

This commit is contained in:
Shahed Nasser
2025-08-15 16:48:28 +03:00
committed by GitHub
parent 12a38bcd2b
commit 14de565077
8 changed files with 305 additions and 130 deletions
@@ -300,10 +300,10 @@ In this example, you receive the `token` and `email` from the page's query param
Then, when the form that has the password field is submitted, you send a request to the [Reset Password API route](!api!/store#auth_postactor_typeauth_providerupdate), passing it the token, email, and new password.
Notice that the JS SDK passes the token in the `Authorization Bearer` header. So, if you're implementing this flow without using the JS SDK, make sure to pass the token accordingly.
Notice that the JS SDK passes the token in the `Authorization: Bearer` header. So, if you're implementing this flow without using the JS SDK, make sure to pass the token accordingly.
<Note>
Before [Medusa v2.6](https://github.com/medusajs/medusa/releases/tag/v2.6), you passed the token as a query parameter. Now, you must pass it in the `Authorization Bearer` header.
Before [Medusa v2.6](https://github.com/medusajs/medusa/releases/tag/v2.6), you passed the token as a query parameter. Now, you must pass it in the `Authorization: Bearer` header.
</Note>