I have a use case where
Create new node if there is no node with given id
Return existing node if node exists with given id
return null if given id is null
Ex: User({emailId: 'x.com'})
If email id is null, then it should return null
I have a use case where
Create new node if there is no node with given id
Return existing node if node exists with given id
return null if given id is null
Ex: User({emailId: 'x.com'})
If email id is null, then it should return null