Currently showing properties for packages in xbps-query requires the package name.
And batch query can be achieved by piping to xargs but it's more slow:
xbps-query --list-pkgs \
    | awk '{ print $2 }' \
    | xargs -rn1 xbps-query --property installed_size,pkgver,architectureIt would be great if xbps-query can support showing properties of all installed packages by default or by a seperate option.