Hi
I'm extracting image from sharepoint list to mail in my flow
My flow is getting failed if their is no image in the column
So , I tried to use " condition " to check the column value (User Attachments - image column name )
After the action " Send an http request to sharepoint list , I need to check whether the particular column contain any image orn't
For that I'm passing following code in my condition
empty(body('Send_an_HTTP_request_to_SharePoint')?['User Attachments'])
not(equals(outputs('Send_an_HTTP_request_to_SharePoint')?['User Attachments'],null))
But the above expressions is s always returning "false" in the "Compose" action, regardless of whether the "User Attachments" field contains an image or not,
could anyone help me on this