
view:get-column( $schema-name as xs:string, $view-name as xs:string, $column-name as xs:string ) as element(view:column)
This function returns the named column specification set in the named view in the named schema.
xquery version "1.0-ml";
import module namespace view = "http://marklogic.com/xdmp/view"
at "/MarkLogic/views.xqy";
view:get-column("main", "songs", "title")
(: Returns the 'title' column from the 'songs' view in the 'main' schema. :)