Skip to content

Instantly share code, notes, and snippets.

@KevinVR
Last active July 22, 2021 18:40
Show Gist options
  • Select an option

  • Save KevinVR/87f356381dfd617daf9bba232f6f7594 to your computer and use it in GitHub Desktop.

Select an option

Save KevinVR/87f356381dfd617daf9bba232f6f7594 to your computer and use it in GitHub Desktop.
const params = {
TableName: 'users',
FilterExpression: 'phone = :phone, email = :email',
ExpressionAttributeValues: {
phone: phoneNumber,
email: emailAddress
}
};
const result = await docClient.scan(params).promise();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment