xquery version "1.0"; declare option exist:serialize "method=xhtml media-type=text/html indent=yes"; let $collection := '/db/apps/SOAPNotes/data' return Patient with Arm Injuries

Patient with Arm Injuries

    { (: search any column that matchs this string :) for $hit in collection($collection)/item[*/text() &= 'arm'] return
  1. {$hit/name/text()} - Date of Injury {$hit/date/text()} | Patient ID {$hit/patient_id/text()} | Patient Injury: {$hit/subjective/text()}
  2. }
Reports | Notes Home