The following query retrieves URL file uploads for a given test suite: ```graphql query GetTestSuiteURLFileUploads($testSuiteId: ObjectID!) { node(id: $testSuiteId) { ... on TestSuite { urlFileUploads(first: 100) { nodes { id fileName fileUrl status totalRows enabled errorMessage createdAt updatedAt } } } } } ``` 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`).