Skip to main content

Retrieve URL File Uploads

The following query retrieves URL file uploads for a given test suite:

query GetTestSuiteURLFileUploads($testSuiteId: ObjectID!) {
node(id: $testSuiteId) {
... on TestSuite {
urlFileUploads(first: 100) {
nodes {
id
fileName
fileUrl
status
totalRows
enabled
errorMessage
createdAt
updatedAt
}
}
}
}
}

Try in explorer

This is useful for checking the processing status after uploading a file. Poll this query until the status changes from Draft or Processing to Processed (or Errored).