Unable to access nested json from mysql query

It does! It looks like these are all coming in inside of data.providerResponse as strings:

searchEmailByUserId.data.providerResponse.map(row=>JSON.parse(row).results)
If you would always want to parse the return this way, I would recommend adding something like this as the Query’s transformer:
return data.providerResponse.map(row=>JSON.parse(row).results)
1 Like