I have a requirement, Where I am using a scenario where I query an API and get response every day morning at 10 o clock.
I get one important data which is text message Every day when the API is queried I get this result and It should write to glide table. Write now even existing Text Messages are getting written again.
How can I create a scenario where It check my glide table for text message and then only writes the entries into my glide table that are not exisisting?
PS Every day it queries API and sends out List of text message
I have made one modification where I first find all rows in my glide, And then check Api response for same text.
Iterating through each elements in both and comparing them does not work as they might have different values when comparing. How can we skim through entire data and decide this?
What operator can I use for doing this checking scenario?