Skip to content

Instantly share code, notes, and snippets.

@glommer
Last active June 8, 2022 17:26
Show Gist options
  • Save glommer/83b131de783bf01c91f605731fc37a0e to your computer and use it in GitHub Desktop.
Save glommer/83b131de783bf01c91f605731fc37a0e to your computer and use it in GitHub Desktop.
for await (let user of User.cursor()) {
if ((user.name === "Glauber Costa") && (user.age >= 40)) {
return new Response(user.email);
}
}
return new Response("not found");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment