Skip to content

Instantly share code, notes, and snippets.

@marnixk
Created April 2, 2025 23:52
Show Gist options
  • Save marnixk/ab79be94b6b433edfb9d9857941be2d0 to your computer and use it in GitHub Desktop.
Save marnixk/ab79be94b6b433edfb9d9857941be2d0 to your computer and use it in GitHub Desktop.
brXM Xinmods query
(query
(type with-subtypes 'xinmods:page')
(offset 100)
(limit 10)
(scopes
(include '/content/documents/xin')
(include '/content/documents/configuration')
(exclude '/content/documents/xin/secret')
)
(where
(and
(= [mods:onsale] true)
(or
(> [mods:price] $minPrice)
(<= [mods:price] $maxPrice)
)
)
)
(sortby [xinmods:publishedDate] desc)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment