Skip to content

Instantly share code, notes, and snippets.

@marianogonzalez
Created November 3, 2014 14:53
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/e884344f8d0d40040c50 to your computer and use it in GitHub Desktop.
Save marianogonzalez/e884344f8d0d40040c50 to your computer and use it in GitHub Desktop.
<mxml:xquery-transformer>
<mxml:xquery-text>
<![CDATA[
xquery version "3.0";
declare variable $document external;
let $animal := "Duck"
return
switch ($animal)
case "Cow" return <Moo />
case "Cat" return <Meow/>
case "Duck" return <Quack />
case "Dog" case "Pitbull" return <Wuff/>
default return "What's that odd noise?"
]]>
</mxml:xquery-text>
</mxml:xquery-transformer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment