Handle record attributes with null values (#56)

Part of cerc-io/laconicd#144

Reviewed-on: cerc-io/laconic-sdk#56
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
This commit is contained in:
Prathamesh Musale 2024-02-08 05:39:31 +00:00 committed by Ashwin
parent 809c4d8f5b
commit 73bef00dd3
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@cerc-io/laconic-sdk",
"version": "0.1.14",
"version": "0.1.15",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:cerc-io/laconic-sdk.git",

View File

@ -79,7 +79,7 @@ export class Util {
const res: {[key: string]: any} = {};
attributes.forEach(attr => {
res[attr.key] = this.fromGQLValue(attr.value);
res[attr.key] = (attr.value === null) ? null : this.fromGQLValue(attr.value);
});
return res;