Created
September 13, 2018 21:00
-
-
Save ableasdale/98cd3065dcf3bdc9c2112bb9d485ad34 to your computer and use it in GitHub Desktop.
MarkLogic: Serch Query Console History
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xquery version "1.0-ml"; | |
declare namespace qc = "http://marklogic.com/appservices/qconsole"; | |
cts:search(doc(), | |
cts:and-query(( | |
cts:element-range-query(xs:QName("qc:timestamp"), ">=", xs:dateTime("2018-06-26T16:06:49")), | |
cts:element-range-query(xs:QName("qc:timestamp"), "<=", xs:dateTime("2018-06-26T17:06:49")) | |
)) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment