Update Impacts Too Many Records

Seeing an update impacts too many records when I try to trigger a mutation that changes multiple rows. I know I've got to be holding it wrong. What am I missing here? Both senderId and recipientId are definitely set correctly
mutation RequestAllTools($senderId: UUID!, $recipientId: UUID!) {
  updateToolsV2Collection(
    filter: { state: { eq: "ACTIVE" }, senderId: { eq: $senderId } }
    set: { state: "REQUESTED", recipientId: $recipientId }
  ) {
    __typename
  }
}
Was this page helpful?