blob: 2440fcc5617464ca9e29fcd4f33b592d984caf76 [file] [log] [blame]
(: Name: combiningnodeseqexcepthc6 :)
(: Description: Simple combination of node sequences involving multiple xml data sources. Use "except" operator. :)
(: insert-start :)
declare variable $input-context1 external;
declare variable $input-context2 external;
(: insert-end :)
for $h in (
($input-context1//hours) except ($input-context2//grade))
order by number($h)
return $h