package
1.1.0
Repository: https://github.com/compose/transporter.git
Documentation: pkg.go.dev

# README

omit function

omit() will remove any fields specified from the message and then send down the pipeline. It currently only works for top level fields (i.e. address.street would not work).

configuration

omit({"fields": ["name"]})

example

message in

{
    "_id": 0,
    "name": "transporter",
    "type": "function"
}

config

omit({"fields":["type"]})

message out

{
    "_id": 0,
    "name": "transporter"
}