Does pyjq support multiple values, such as to merge json dictionaries from multiple files, this is achievable in JQ via the following with the --slurp option:
jq -s '.[0] + .[1]' config.json config-user.json
However, I'm not sure how this could be done via .apply() or .all()
Does pyjq support multiple values, such as to merge json dictionaries from multiple files, this is achievable in JQ via the following with the
--slurpoption:jq -s '.[0] + .[1]' config.json config-user.jsonHowever, I'm not sure how this could be done via
.apply()or.all()