You can't reference id as an attribute of the node. The correct syntax is:
MATCH (u:User)-[r:LIKES]-(p:Post)
WHERE ID(u)="95e54ae5-e512-4030-9640-6b157aaf5400" AND ID(p)="919f3216-b13b-48ae-a4df-ef779325ff5e"
DELETE r
You can't reference id as an attribute of the node. The correct syntax is:
MATCH (u:User)-[r:LIKES]-(p:Post)
WHERE ID(u)="95e54ae5-e512-4030-9640-6b157aaf5400" AND ID(p)="919f3216-b13b-48ae-a4df-ef779325ff5e"
DELETE r