Even so simple query generate that error: START n=node(104900) OPTIONAL MATCH (n)-[r]-() WHERE not (type(r) in ['Dossier', 'Diary']) REMOVE r.IsIndexed RETURN id(n)
while next two queries does not: START n=node(104900) OPTIONAL MATCH (n)-[r:Dossier|Diary]-() REMOVE r.IsIndexed RETURN id(n) START n=node(104900) OPTIONAL MATCH (n)-[r]-() WHERE not (type(r) in ['Dossier', 'Diary']) REMOVE n.IsIndexed RETURN id(n) -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
