You can use the reverse() function that returns a reversed string. Here is an example to show how to use it.
MATCH (d:Disease) RETURN reverse(d.node_label) LIMIT 1;
MATCH (d:Disease)
RETURN reverse(d.node_label)
LIMIT 1;