Skip to content

Instantly share code, notes, and snippets.

@yrashk
Last active April 12, 2016 23:46
Show Gist options
  • Save yrashk/e0ed824009be0fa73958dd41958d8887 to your computer and use it in GitHub Desktop.
Save yrashk/e0ed824009be0fa73958dd41958d8887 to your computer and use it in GitHub Desktop.
Pseudocode-ish User's email retrieval
// Pseudocode-ish User's email retrieval
public class User {
public String email() {
return query(equal(EmailChanged.ID, id),
descending(EmailChanged.TIMESTAMP)).first().
email();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment