Manipulate Returned Data

Hello all, maybe this is a stupid question but I am having a hard time accessing the data from my api call. My boiler plate code:
const { data, error } = await supabase
        .from("myTable")
        .insert({
          first_name: firstName,
          last_name: lastName,
          address: addressOne,
          city: cityOne,
          address_two: addressTwo,
          state_province_region: stateProvince,
          zip_postal_code: zipPostal,
          country: countryOne,
          email_address: emailAddress,
          phone_number: phoneNumber,
          message: messageOne,
        })
        .select();

My return object not sure how to access data I have been trying things like data.first_name, below is my return object. Thank you for any help
returnobject.png
Was this page helpful?