Skip to content

Instantly share code, notes, and snippets.

@thaerlabs
Last active March 9, 2020 07:08
Show Gist options
  • Save thaerlabs/cdaf23eb9aa10776c910cfd5b0c118c2 to your computer and use it in GitHub Desktop.
Save thaerlabs/cdaf23eb9aa10776c910cfd5b0c118c2 to your computer and use it in GitHub Desktop.
Snippets and utils to be used with AWS AppSync VTL Templates

Remove empty values from object to prevent DynamoDB empty string exception

#set ($values = {})

#foreach ($entry in $ctx.args.input.entrySet())
  #if( !$util.isNullOrBlank($entry.value) )
  	$util.qr($values.put($entry.key, $entry.value))
  #end
#end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment