When using the following trait in my user class
/**
* @var User
*
* @Gedmo\Blameable(on="create")
* @ORM\ManyToOne(targetEntity="User")
*/
protected $createdBy;
/**
* @var User
*
* @Gedmo\Blameable(on="update")
* @ORM\ManyToOne(targetEntity="User")
*/
protected $updatedBy;
Whenever i query a user the createdBy user is also fetched and this goes on recursively..
So if user C that was created by B, that was created by A is queried. All three users will be fetched...
Is there a way to disable always fetching the referenced user?