If I do this. ```mutation updateReport($reportId: ...
# prisma-whats-new
j
If I do this.
Copy code
mutation updateReport($reportId: ID!, $logs: [ID!]){
    updateReport(
      id: $reportId
      logsIds: $logs
      userId: $userId
    ), {
      id
    	logs{
        id
        startedAtOdometerReading
      }
    }
  }
p
I think you might need to add
$userId: ID!
to the first part of the mutation
So
mutation updateReport($reportId: ID!, $logs: [ID!], $userId: ID!)