Skip to content

Instantly share code, notes, and snippets.

@marianogonzalez
Created November 3, 2014 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marianogonzalez/f76699565b3cf017fbdb to your computer and use it in GitHub Desktop.
Save marianogonzalez/f76699565b3cf017fbdb to your computer and use it in GitHub Desktop.
<mxml:xquery-transformer>
<mxml:context-property key="books" value="#[flowVars['books']]" />
<mxml:context-property key="cities" value="#[flowVars['cities']]" />
<mxml:xquery-text>
<![CDATA[
xquery version "3.0";
declare variable $document external;
declare variable $cities external;
declare variable $books external;
<mixes>
{
for $b in fn:doc($books)/BOOKLIST/BOOKS/ITEM,
$c in fn:doc($cities)/cities/city
return <mix title="{$b/TITLE/text()}" city="{$c/@name}" />
}
</mixes>
]]>
</mxml:xquery-text>
</mxml:xquery-transformer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment