We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug: The summarize call outputs json column content as string instead of json. Tested with client version: 0.26.7
summarize
Repro: Where "myjson" is a column of type json:
json
const rec = await xata.db.games.read("rec_ck6m8s0tr08hl26rt2m0"); console.log(rec.myjson); //response: { "one": "content", "two": "content2" }
const summary = await xata.db.games.summarize({ columns: ["myjson"], summaries: {}, }); console.log(summary.summaries[0].myjson); //response: "{\"one\":\"content\",\"two\":\"content2\"}"
Reported on Discord.
The text was updated successfully, but these errors were encountered:
eemmiillyy
Successfully merging a pull request may close this issue.
Describe the bug:
The
summarize
call outputs json column content as string instead of json.Tested with client version: 0.26.7
Repro:
Where "myjson" is a column of type
json
:Reported on Discord.
The text was updated successfully, but these errors were encountered: