Skip to main content

FileExtractionRule

The rule specifying what files to extract from a zip file and where to store them.

type FileExtractionRule {
include: FileGlob!
exclude: [FileGlob!]
destination: TemplatedURL!
}

Fields

FileExtractionRule.include ● FileGlob! non-null scalar

A glob pattern defining the files to select from directory.

FileExtractionRule.exclude ● [FileGlob!] list scalar

An optional list of glob patterns defining files to exclude from the included selection.

FileExtractionRule.destination ● TemplatedURL! non-null scalar

A templated URL that will be filled using the strings captured by the 'include' FileGlob, as variables 1, 2, 3, ...

Member of

ExtractFilesJob object