Announcement

Collapse
No announcement yet.

Emailaddress -> Person Entity

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Emailaddress -> Person Entity

    I'm having trouble seeing the cleanest way to get all Person entities associated with a particular email address (usually this will just be one Person entity).

    I can get the emailAddressId, I just need a select on this, giving all [entityId, entityType] pairs.

  • #2
    SELECT entity_id, entity_type
    FROM `entity_email_address`
    WHERE email_address_id = '53ec89eac199a'

    Comment


    • #3
      Of course I'd already figured out THAT approach

      Comment


      • #4
        There will the method that returns the first entity associated with a particular email address in the next version. A lot of improvements related to Emails is coming.

        Comment


        • #5
          Great to hear Yuri.

          Comment

          Working...
          X