Skip to content

Instantly share code, notes, and snippets.

@fallsimply
Created May 10, 2021 20:10
Show Gist options
  • Save fallsimply/786b92867b46909bd95b3b38c5e984b3 to your computer and use it in GitHub Desktop.
Save fallsimply/786b92867b46909bd95b3b38c5e984b3 to your computer and use it in GitHub Desktop.
Azure Function.json Output Bindings Filter - https://jqplay.org/s/137wfQ6_gj
{
"bindings": [
{
"type": "httpTrigger",
"direction": "in",
"name": "req",
"methods": [
"get",
"post"
]
},
{
"type": "http",
"direction": "out",
"name": "res"
}
]
}
.bindings | map(select(.direction == "out") | {type, name})
[
{
"type": "http",
"name": "res"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment