• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# CMD: Prints the set of variations and their values used in the input
2
3[[.[] | .Variations | select(. != null) | to_entries] |
4  flatten |
5  group_by(.key) |
6  .[] |
7  {key: .[0].key, value: map(.value) | unique}] |
8  from_entries
9