“Get the node” is actually “query for a node”, so either you query/get it, or you use your locally cached node (but then you don’t know if somebody else has changed it or not). So the simple answer would be “no”.
In the GraphQL API which is rewritten to DQL logic, it is doing a mutation and then a query. This also appeases the case when the query expects more data than the mutation. Example, if you link a new post to an existing user but in the response you want the query to return the authors other recent posts uids as well.