Re: [DISCUSS] Is null equal to null

2023-08-07 Thread David Bechberger
Hello Ken, I don't know that I have a strong opinion on what NULL==NULL should evaluate to, but I agree we should come up with a set of rules here for consistency, both within Gremlin but also with other database language standards (e.g. GQL and SQL) so that Gremlin best matches customer

Re: [DISCUSS] Local Scope As Default

2023-08-07 Thread Stephen Mallette
I think your argument makes sense but your example made me think of something else: g.V().hasLabel('person').values('age').fold().where(all(gt(18))) the design of all() is to return true or false. if that's the case then using it in a where() will always be successful. returning true/false is