如何在 Marklogic 中排除一些原始 pdf

How to exclude some raw pdfs in Marklogic

我有 collection 一千多个原始 pdf。我怎样才能排除一些不需要的原始 pdf。我有一个代码,但不知道如何排除 e001.pdf 和 e002.pdf。提前致谢。

collection: /electric-pdf

我尝试排除 collection

中的两个 pdf(e001.pdf、e002.pdf)
xquery version "1.0-ml";

let $pdf-uris := cts:uris(
             (),(),
                     cts:and-query((
                       cts:collection-query("/electric-pdf"),
                       cts:not-query(what's cts function should I use exclude e001.pdf, e002.pdf in collection )
                     ))  

             )
return $pdf-uris

使用 cts:document-query,它接受一系列 URI。例如:

cts:not-query(cts:document-query(('1e001.pdf', e002.pdf'))