while we are able to create new nodes etc., we are still struggling to find out how properties can be added to existing relationships. For instance we are declaring the following in an Entity format:
/**
* @OGM\ManyToMany(relation="GOES_TO_MARKET")
*/
protected $shoppers;
How do we make it so that we can add additional properties to GOES_TO_MARKET using doctrine format?
Thanks