Hey , I am trying to delete a relationship of group with user for a particular id using grpc and making our library on top of authzed client but when I am trying to delete any specific relationship from that tenant for that user id having association with group will deleting all the users association for that group Id . Like this
Relationship groupUserRelationship = new Relationship(RelationsEnum.GROUP.toString(), groupCode,
RelationsEnum.GROUP_MEMBER.toString(), RelationsEnum.USER.toString(), userId);
can anyone help in this?