Return except specific property

Is there no way to return every property except one?

For eg. the following will return all properties:

MATCH (n:Node)
RETURN n

Now, what I want/suggest to provide feature something like below if there's no way to achieve as far as current system:

MATCH (n:Node)
RETURN n {.*, !except:specific} // exclamation, otherwise it seems to be included property

Just wondering if there was any update on this topic? Would love to see this feature