Avishek Kumar

Results 2 comments of Avishek Kumar

Update: @RichardIrons-neo4j There is a bypass for example 3. Example: ``` public record struct Collection(List Value); MATCH(a:COL1) RETURN collect({ prop1 : a.prop1 , prop2 : a.prop2 }) as Values ```...

@imthatgin Method 1. You have to return each property Ex user.Name as Name, user.Icon as Icon...... Method 2. Wrap it in a another class Ex: class Value< T >(T Value);...