I want to filter the results of the following XQuery:
for $units in $data//*[@id = $ids and (@xref = $a or @xref = $b)]/@id
How do I select the elements with a matching @id value and and an @xref attribute that matches either $a or $b, but not both $a and $b.
Both $a and $b are node sets with tokenized values, which both act as identifiers. The wanted identifier may be stored in either $a or $b.
My intention is that if $a matches the @xref attribute, the query does not check for $b.