MVFM

resend/get_contact

Retrieve a contact by ID

const app = mvfm(prelude, console_, resend_);
const prog = app({}, ($) => {
  const contact = $.resend.contacts.get("contact_abc123");
  return $.console.log(contact);
});
await fold(defaults(app, { resend: crystalBallResendInterpreter }), prog);
Ctrl+Enter