I have created a fulltext index named messageText on property text of node Message.
CALL db.index.fulltext.createNodeIndex('messageText', ['Message'], ['text'])
In the same node(Message), I have another property named created, that contains the timestamp at which the node was created. Is it possible to alter the index to give more weightage to the recently created messages? That is, if there are 2 identical text values, give a higher score to a node having latest timestamp value.