Accessing nested values
Is there a way to access nested data from a object within table v8?
The data I am accessing is within an array and is an object itself. An example similar to this would be:
{
url: string
players: [
player1: {
username: string
},
player2: {
username: string
}
]
}
Ideally this would allows me to have each user's username displayed in a separate column as well
0 Replies