In Visual query builder, when we have more than a relationship columns between two tables... it is taking the last mentioned value in the relationship array... is that possible to get with the specific relation value instead of taking its last mentioned value in relationship array consider Users table and orders table if we have relation array like this
"relations" => [
["orders.user_id", "join", "users.id"],
["orders.created_by", "join", "users.id"],
["orders.updated_by", "join", "users.id"],
]
It is getting relation with updated_by but i want relation with user_id can you share the possible ways?