freshflame.
BBuildShip
•Created by freshflame. on 5/7/2025 in #💬・general
freshflame. - I have a Update Row with Token in...
RLS are activated and I use Service Role Key
2 replies
BBuildShip
•Created by freshflame. on 5/5/2025 in #💬・general
freshflame. - I am sending JSON to Buildship AP...
This is the solution I found, if anybody is in the same situation. I made a new column in Supabase that is string and is a copy of the boolean. And updates automatic.
ALTER TABLE public.profiles
ADD COLUMN is_active_brevo text
GENERATED ALWAYS AS (is_active::text)
STORED;
In my case I need for Brevo to know which email campaign to send to the user. True is paid user false is free user
7 replies
BBuildShip
•Created by freshflame. on 5/5/2025 in #💬・general
freshflame. - I am sending JSON to Buildship AP...
Looks good, the thing is that that are a lot of executions to get a boolean when should work normally
7 replies
BBuildShip
•Created by freshflame. on 5/5/2025 in #💬・general
freshflame. - I am sending JSON to Buildship AP...
How can i get the values from the log?
7 replies
BBuildShip
•Created by freshflame. on 5/5/2025 in #💬・general
freshflame. - I am sending JSON to Buildship AP...

7 replies
BBuildShip
•Created by freshflame. on 5/4/2025 in #💬・general
freshflame. - I am trying to send data to Brevo...
Weird, but the app I am sending the data get perfectly but Buildship gives an error
2 replies
BBuildShip
•Created by freshflame. on 4/29/2025 in #💬・general
freshflame. - Hey! I am trying to make work Sup...
It worked! Thanks a lot
7 replies
BBuildShip
•Created by freshflame. on 4/29/2025 in #💬・general
freshflame. - Hey! I am trying to make work Sup...

7 replies
BBuildShip
•Created by freshflame. on 4/29/2025 in #💬・general
freshflame. - Hey! I am trying to make work Sup...

7 replies
BBuildShip
•Created by freshflame. on 4/29/2025 in #💬・general
freshflame. - Hey! I am trying to make work Sup...
Hey Gaurav,
I did a Get Row from Supabase to find the ID of a User. Now I want to load that ID in a Create Row in Supabase. But I do not know how to load that ID.
From Get Row I get this:
[
{
"id": "d4912017-6cda",
"email": "test@test.com"
}
]
Inside Create Row I need this:
{
"profile_id": ID goes here
}
But only allow me to load get row, but I need get row ID field from the array.
Thanks
7 replies