okay, i found out how i had to write my subscripti...
# orm-help
g
okay, i found out how i had to write my subscription on frontend:
Copy code
export const DELETE_PERSON_SUBSCRIPTION = gql`
  subscription personDeleted {
    personDeleted {
      previousValues {
        id
      }
    }
  }
`;