Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Example Configuration

Code Block
languagepy
themeDJango
_dump_stage = DumpFinalStage(
    enable=True,
    name="dump",
    expand_result=True,
    halt_on_exception=True,
    include_in_process=["field1", "field2"],
    exclude_in_process=["field3"],
    include_in_post_process=["field4"],
    exclude_in_post_process=["field5"]
)

to include all just don't define any include or exclude field

Code Block
languagepy
themeDJango
_dump_stage = DumpFinalStage(
    enable=True,
    name="dump"
)

...