Skip to content

downloadResultsCsv

Download file results in CSV format.

Arguments

Argument Type Description
crawlId (required) String! Identifier of the crawl whose file results are downloaded.
downloadFilter DownloadResultsCsvFiltersInput Filters applied to the file results included in the CSV.

Returns

DownloadResultsCsvReply!

Sample

mutation DownloadResultsCsv($crawlId: String!) {
  downloadResultsCsv(crawlId: $crawlId) {
    downloadLink
  }
}
{
  "crawlId": "example-string"
}
{
  "data": {
    "downloadResultsCsv": {
      "downloadLink": "example-string"
    }
  }
}