I'm defining the relationship between two entities, Variety and Treatment.
match (s1:Variety),(c:Treatment)
where id(s1)=0 and id(c)=4
create (s1) - [rel:UNTREATED]-> (c)
return type(rel)
Result is '(no changes, no records)'.
In this context, an erro...