Passing data between apps

Hello!, one way to "send" data between apps is to use the URL.

lets say in search user we choose user with id = 1

then we pass user id as a header parameter in the details user app
image

and in page load we query data where user id matches url param user id

SELECT * FROM sample_users WHERE id = {{ urlparams.hash.user_id }}

Animation

3 Likes