I have a base64 image that I am trying to save in a Postgres database (using Hasura). The field is of type bytea
I am not sure how to save this data to the field.
I tried passing data:image/png;base64,sisodjodo...
to the field, and it saves it like this: \x6956424f5277304b47676f414141414...
When I get it back it doesn't seem to come back in the same manner that it was saved.
// Query the database and save resulting object
const user = {
avatar: '\x6956424f5277304b47676f414141414...'
}
user.avatar = btoa(user.avatar);
console.log(user.avatar);
// Prints: XHg2OTU2NDI0ZjUyNzczMDRiNDc2NzZmNDE0MTQxNDE0Z...