Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Parsing is incomplete when trailing object keys have null values #79

@TannerPerrien

Description

@TannerPerrien

When ImportJSON retrieves an object with null value fields, it drops those keys in the resulting output.

Example 1: This drops fields
INPUT

{
  field1: "1",
  field2: "2",
  field3: null,
  field4: null,
}

OUTPUT

{
  field1: "1",
  field2: "2"
}

Example 2: This works ok

{
  field1: "1",
  field2: "2",
  field3: null,
  field4: null,
  field5: "5"
}

OUTPUT

{
  field1: "1",
  field2: "2",
  field3: null,
  field4: null,
  field5: "5"
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions