DEV Community

Yan Cui
Yan Cui

Posted on • Originally published at theburningmonk.com on

AppSync: how to compare strings lexicographically in VTL

I had been working on a client project where I built the GraphQL backend for a new social network using primarily AppSync, Lambda and DynamoDB.

One of the features of the app was to support private messaging between two users. To allow either user to fetch their chat messages in chronological descending order, I modelled the chat_messages DynamoDB table as below:

where userIds is the HASH key, and timestamp is the RANGE key.

Here, userIds is a composite key made up of the two users’ IDs, arrange in lexicographical order. If you know the two users’ IDs, you can fetch the chat messages using a DynamoDB Query operation.

So in the VTL template, I had something like this:

However, this didn’t work.

Given the following input:

The $userIds variable would be interpreted as 35c1f714–46c1–4ccb-87fc-933da626ce6a_08371580–48e2–43e7–9b1c-75804b9e7e12, where the user IDs are arranged in the wrong order. What’s going on?

If you work with Java everyday then the problem might be obvious to you, that to compare strings lexicographically you need to use the compareTo method on the first string. And since VTL is implemented in Java, that is also the case here.

Instead, the right way to do it is this:

I have found the VTL Reference page very handy while working with VTL. But unfortunately, lexicographical string comparison was not mentioned in the VTL docs. Without helpful folks like Richard and Franck I would have easily spent hours banging my head against this problem!

I hope this post helps you in a similar way should you run into the same problem, as my way of passing it forward.


Hi, my name is Yan Cui. I’m an AWS Serverless Hero and the author of Production-Ready Serverless. I specialise in rapidly transitioning teams to serverless and building production-ready services on AWS.

Are you struggling with serverless or need guidance on best practices? Do you want someone to review your architecture and help you avoid costly mistakes down the line? Whatever the case, I’m here to help.

You can contact me via Email, Twitter and LinkedIn.

Hire me.

The post AppSync: how to compare strings lexicographically in VTL appeared first on theburningmonk.com.

Top comments (1)

Collapse
 
starpebble profile image
starpebble

Tricky! VTL doesn't exactly look like Java. Thanks for keeping us safe.