-
Notifications
You must be signed in to change notification settings - Fork 16.7k
Open
Description
To reproduce the problem, I created a dataset from the abc table
create table public.abc
(
source_id varchar(255) not null,
json jsonb,
constraint pk_source_id primary key(source_id)
);
insert into abc (source_id, json) VALUES (1, '{"key": "value"}');
then I checked that my column type was json.

and when I get an object for handlebars, I get very upset that I get a string instead of an object.

and I can't do {{this.json.key}} because there is a string in the json
{"source_id":"1","json":"{'key': 'value'}"}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels