Reshapes
← Relifold documentation

Drop

Remove named top-level fields.

Drop removes explicitly named fields from every row.

Worked example

Drop(
    name="remove-article-body",
    input_spaces=("news",),
    output_space="headline-only-news",
    fields=("body", "abstract"),
)
ParameterDefaultMeaning
input_spacesrequiredThe Space or Spaces read by the reshape.
namerequiredA stable node name shown in the pipeline and session.
output_spacerequiredThe Space receiving rows after fields are removed.
fieldsrequiredTop-level fields to remove.

Output

One row per input with all unlisted fields preserved.