Skip to content

Instantly share code, notes, and snippets.

@yak1ex
Created July 28, 2025 12:00
Show Gist options
  • Save yak1ex/a076212871a258fb557696fe4055621c to your computer and use it in GitHub Desktop.
Save yak1ex/a076212871a258fb557696fe4055621c to your computer and use it in GitHub Desktop.
jq snippets
def cull_leaf: \
walk( \
if type == "object" then \
with_entries(if ([.value | type] | inside(["array","object"]) | not) then .value |= null else . end) \
else . end);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment