Empty Queries
When querying a Database or an API with a functional node, you can select which parameters to get like so:
Function() {
key1,
key2
}
However, if you leave the {} section empty, it'll return the entire payload returned by the function
Function() {}
Updated less than a minute ago