Created
April 2, 2025 23:52
-
-
Save marnixk/ab79be94b6b433edfb9d9857941be2d0 to your computer and use it in GitHub Desktop.
brXM Xinmods query
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
(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