[Neo] Deleting a property

2010-03-03 Thread Rick Bullotta
Perhaps a stupid question, but is setting a property to null effectively the same as deleting a property? ___ Neo mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

Re: [Neo] Deleting a property

2010-03-03 Thread Johan Svensson
Node/relationship setProperty( key, null ) will throw IllegalArgumentException so you have to use the removeProperty( key ) method. -Johan On Wed, Mar 3, 2010 at 4:15 PM, Rick Bullotta wrote: > Perhaps a stupid question, but is setting a property to null effectively the > same as deleting a prop