When it comes to how the OGM maps query results to @Relationship List properties, is it expected that the result order should be retained in the list?
I’m ordering the results by a property order on the respective relationship. The raw results comes back in expected order, but the List property on my POJO is mapped out of order. Note I'm using Kotlin:
@Relationship(type = "ALONG", direction = Relationship.OUTGOING)
var axes: List<Axis>? = null
Can't really find much info on this topic – thanks!