Skip to content

Instantly share code, notes, and snippets.

@vestrel00
Last active December 18, 2021 02:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vestrel00/2a9631510de2ad2f658a73cc0a75c4d9 to your computer and use it in GitHub Desktop.
Save vestrel00/2a9631510de2ad2f658a73cc0a75c4d9 to your computer and use it in GitHub Desktop.
If John Doe switches jobs and heads over to Microsoft, we can UPDATE his data
Contacts(context)
.update()
.contacts(johnDoe.mutableCopy {
setOrganization {
company = "Microsoft"
title = "Newb"
}
emails().first().apply {
address = "john.doe@microsoft.com"
}
})
.commit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment