Created
July 5, 2017 09:58
-
-
Save tuurma/093b8468343ee11b51afb2cce179135f to your computer and use it in GitHub Desktop.
remove all documents in a collection
This file contains 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 "3.1"; | |
for $i in collection('/db/apps/temp')/* | |
return | |
xmldb:remove('/db/apps/temp', util:document-name($i)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment