I'm trying to gather multiple values from a user input query selection. Here is an example selection:

And here is the query behind it:
SELECT
logical_interface.name AS lif,
logical_interface.address AS address,
logical_interface.protocols AS protocols,
broadcast_domain.name AS test_broadcast_domain
FROM
cm_storage.cluster cluster,
cm_storage.vserver vserver,
cm_storage.logical_interface logical_interface,
cm_storage.broadcast_domain broadcast_domain,
cm_storage.ipspace ipspace
WHERE
cluster.name = '${ClusterName}'
AND vserver.name = '${SourceVserverName}'
AND vserver.cluster_id = cluster.id
AND logical_interface.vserver_id = vserver.id
AND broadcast_domain.ipspace_id = ipspace.id
AND ipspace.cluster_id = cluster.id
AND ipspace.name != 'Cluster'
AND ipspace.name NOT IN (
SELECT
ipspace.name
FROM
cm_storage.vserver vserver,
cm_storage.ipspace ipspace
WHERE
vserver.name = '${SourceVserverName}'
AND vserver.ipspace_id = ipspace.id
)
Judging from the variable values this gives me exactly what I want - I can split the string on '~' and pull out the values I need. The problem is I'm getting an error in planning:
"The value smv1_lif1~10.3.240.200~nfs,cifs~SE-Lab240-Test,smv1_lif2~10.3.240.201~nfs,cifs~drtest for input $SourceVserverNetworkInterfaces has to be within [smv1_lif2~10.3.240.201~nfs,cifs~SE-Lab240-Test, smv1_lif2~10.3.240.201~nfs,cifs~drtest, smv1_lif1~10.3.240.200~nfs,cifs~SE-Lab240-Test, smv1_lif1~10.3.240.200~nfs,cifs~SE-Lab241-Test, smv1_lif1~10.3.240.200~nfs,cifs~drtest, smv1_lif2~10.3.240.201~nfs,cifs~SE-Lab241-Test]"
The values are included in the specified set. I also tried just selecting one value, but the results are the same. What am I doing wrong here?
WFA v4.2.0.0.1 build 4759965