I'm receiving an error: “Expression evaluation error at function 'union&

I'm receiving an error: “Expression evaluation error at function 'union' [line 15]: Cannot compare type List of Number (Integer)”

I'm using the following expression to return a list of application ids, which is then passed through a ‘union’ command to remove duplicate ids. The error appears to manifest when the list of returned application ids reaches a certain size (around about 40 ids), less than that the expression runs as expected.

Any suggestions why this maybe happening?

=with(
local!tasks: a!queryProcessAnalytics(
report: cons!LUA_OPEN_TASKS_REPORT_DOCUMENT,
contextProcessModels: cons!LUA_OPEN_TASKS_PROCESS_MODELS,
query: a!query(
filter: a!queryFilter(
field: "c10",
operator: "in",
value: ri!user
),
pagingInfo: a!pagingInfo(startIndex: 1, batchSize: -1)
)
),

union(local!tasks.data.c7, local!tasks.data.c7)
)

The output query format is:
[label:Process,field...

OriginalPostID-154528

OriginalPostID-154528

  Discussion posts and replies are publicly visible

Parents
  • @stephens To add to Amit's explanation, this type casting is especially needed when we are dealing with the data returned by querying process analytics. So far from my experience, I have observed that data returned by querying process analytics is mostly in the list format. At times, when this data is passed to some Appian functions, implicit type casting will be done whereas an explicit type casting is needed when Appian doesn't perform implicit casting for us. Also I would like to add that we should always be aware of the type of data we have in hand using typeof() and typename(), and then perform an explicit cast accordingly as per the need basis.
Reply
  • @stephens To add to Amit's explanation, this type casting is especially needed when we are dealing with the data returned by querying process analytics. So far from my experience, I have observed that data returned by querying process analytics is mostly in the list format. At times, when this data is passed to some Appian functions, implicit type casting will be done whereas an explicit type casting is needed when Appian doesn't perform implicit casting for us. Also I would like to add that we should always be aware of the type of data we have in hand using typeof() and typename(), and then perform an explicit cast accordingly as per the need basis.
Children
No Data