bamaer opened a new issue, #2299: URL: https://github.com/apache/hop/issues/2299
### Apache Hop version? SNAPSHOT-20230209 ### Java version? openjdk version "11.0.17" 2022-10-18 ### Operating system Linux ### What happened? when creating relationships from a field in the Neo4j Output transform, incorrect relationships are created when the value in the relationship value changes. expected behaviour: create relationship with the actual value in the field. The sample data set in this pipeline contains 22 relationship, 3 relationship types. Only 2 relationship types and a number of incorrect relationships are created. Batch size set to 1 to allow easy pinpointing: 1) `HAS_ORDER` relationship is missing  Iinstead the `HAS_ORDER` relationship, a `:HAS_DELIVERABLE` relationship is created. This relationship is incorrect but does exist: `match path=(p:PROJECT)-[:HAS_DELIVERABLE]-(o:ORDER) return path`  2) similarly, a `HAS_WORK` relationship is created instead of `HAS_DELIVERABLE` for the first `ORDER` - `DELIVERABLE` relationship in the set. match path=(o:ORDER)-[:HAS_WORK]-() return path;  [issues-relationships.hpl.txt](https://github.com/apache/hop/files/10700911/issues-relationships.hpl.txt) ### Issue Priority Priority: 2 ### Issue Component Component: Neo4j -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
