If I have a cypher query like:
MATCH (user:USER)
WHERE user.userName = {userName}
RETURN user
I return the whole user object if a user exists with a matching username. If all I care about is if the user exists or not is there a way to return something that signals existence of a matching node? (this will cut down on data transfer if nothing else)