How to show query GraphQL data on a table?

Hi I'm stuck with a query that I am not able to display on a table
So this is my query
query{
person {
kyc {
anID
date
reviewMessage
results {
result1
result2
result3
}
}
anID2
firstName
middleName
lastName
mailingTo {
addressType
line1
line2
city
state
country
postalCode
}
}
}

and I am using {{person.data}} as the resource data on the table but I'm not getting a results

Hi emejotalars, you can hover on person.data to see what data it contains, that may give you some idea on how to retrieve the result to be displayed in a table. If you need help debugging, can you post a screenshot of the data while you hover on it?