Skip to content

Instantly share code, notes, and snippets.

@joemfb
Created September 11, 2014 18:58
Show Gist options
  • Save joemfb/164f4be4f8f669d5da1a to your computer and use it in GitHub Desktop.
Save joemfb/164f4be4f8f669d5da1a to your computer and use it in GitHub Desktop.
XQuery function info in MarkLogic
xquery version "1.0-ml";
declare function local:fn-info($fn)
{
xdmp:function-name($fn),
xdmp:function-signature($fn),
xdmp:function-module($fn)
};
local:fn-info( cts:special#1 )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment