val
09/25/2018, 2:19 PMtype FollowSuggestionList {
id: ID! @unique
updatedAt: DateTime!
users: [User!]! @relation(name: "FollowSuggestionEntry")
}
and when i create an instance of it, I connect it to an array of users. When I later query that users property am I guaranteed to get it back in that original array order (provided I don't supply custom ordering)?val
09/25/2018, 2:25 PMnilan
09/25/2018, 3:13 PMWhen I later query that users propertywhat do you mean with that exactly?
val
09/25/2018, 3:29 PMusers
object of the FollowSuggestionList
at a later date I'll get the list back in the same order I connected it?nilan
09/25/2018, 3:34 PMid
.nilan
09/25/2018, 3:46 PMval
09/25/2018, 4:49 PMval
09/26/2018, 9:41 AM