What is the best way to model following text as SVO triplets

Hi,

I am trying to generate SVO triplets to below text. Can you help me to choose a verb as relation?

"Normal cells stop growing when they encounter other cells"

Thanks,
Dinesh K.

(nc:NormalCell)<-[STOPS_GROWTH_OF]-(oc:OtherTypeOfCell)

or

(nc:NormalCell)<-[STOPPED_GROWTH_OF {encounter: datetime}]-(oc:OtherTypeOfCell)

or

(oc:Cell:OtherType)-[STOPPED_GROWTH_OF {encounter: datetime}]->(nc:Cell:Normal)