Skip to main content

Retrieve URL File Uploads

The following query gets the 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
}
}
}
}
}

Try in explorer