I'm using pulldata("@layer") to get a datetime based on another field in the survey and I wish to compare it to another value and show true/false.
so my field "test1" has the pulldata function and "test2" has the pulldata function with a comparison "> 10" at then end, like so: pulldata("@layer", "getValue", "attributes.inspection_date", "service_url/FeatureServer/14?orderbyfields=inspection_date desc", concat("field1 =", ${field1}, " and field2 = '1'")) > 10
in survey123 connect (and android app) I get :

which is correct, but in the web app, I get:

where "test2" should also return "true".
I tried putting int() around my pulldata() but doesn't work. I also tried "field2 = 1" and "field2 = 'yes'", doesn't work either.
What am I doing wrong here?
Thanks!