Hi
We’ve very recently ran into issues with the “Passed automated check for common errors” step as part of the app submission process. The step would always fail to execute.
Looking at the network response when clicking the “Run automated tests” button I get this:
error: Error: Field 'state' doesn't exist on type 'LatestAutomatedScanResult' (Did you mean `status`?)
Removing ‘state’ from the query, and running the api call again manually fixed this for us.
mutation AutomatedScanMutation($input: CreateAutomatedScanRequestsInput!) {
createAutomatedScanRequests(input: $input) {
automatedScanResults {
type
state <- removed this
status
completedAt
__typename
}
__typename
}
}