Skip to content

Expression is split it two, when it's one #94

@neopaf

Description

@neopaf

Parse thinks one expression is two :(

Looks like this, note two triangles on gutter:
Снимок экрана 2024-11-19 в 12 18 17

As text:

call apoc.load.json('file:///RTC/ProductSpecification.json') yield value
UNWIND value.value as r
//with r limit 10
merge (ps:ProductSpecification {id: r.id, name: r.name, description: r.description})
with *
unwind r.specCharUse as specCharUse
with *, specCharUse.characteristic as c
merge (pc:ProductCharacteristic {id: c.id, displayValue: c.displayValue})
merge (pc)-[:SPEC_CHAR_USE]->(ps)
with *
unwind specCharUse.specCharValueUse as specCharValueUse
with *, specCharValueUse.characteristicValue as v
merge (cv:CharacteristicValue {id: v.id, displayValue: coalesce(v.displayValue, 'null')})
merge (cv)-[:SPEC_CHAR_VALUE_USE]->(ps)
merge (cv)-[:OF_CHARACTERISTIC]->(pc);

Using plugin 0.8.0 + Build #IU-242.23339.11, built on September 25, 2024.

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