fetchListOfThirdPartyIssueFiles

Examples

query FetchListOfThirdPartyIssueFiles($requestId: String, $tool: String) {
  fetchListOfThirdPartyIssueFiles(requestId: $requestId, tool: $tool) {
    files {
      requestId
      tool
      status
      metadata {
        path
        message
      }
    }
    error
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

{
  "requestId": "example",
  "tool": "example"
}

Arguments

You can use the following argument(s) to customize your fetchListOfThirdPartyIssueFiles query.

Argument
Description
Supported fields

requestId String

Unique identifier for the file request

tool String

Tool name which was used for file upload

Fields

Return type: FetchThirdPartyFileListResponse!

You can use the following field(s) to specify what information your fetchListOfThirdPartyIssueFiles query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

List of uploaded files

requestId String! tool String! status String! metadata [MetadataEntry!]

error Boolean

Last updated