Set_route List View Order

My goal is to have a button in my Document Form that opens a list view with related documents, just like the “connections” functionality does.
Let’s say the DocType “My Doctype” has a field “related_to” that is a link to “My Doctype”. When i click the ‘Show Related Documents’ button i want to see a list of all documents that match that filter.

I’ve added the button with:


frm.add_custom_button('Show Related Documents', () => {
			frappe.set_route(
				'List', 
				'My Doctype', 
				{
					'related_to': frm.doc.name,
				}
			)
		});

That works fine. Now I want the List View to be in a specific order. By default it is descending by last modified on. But I want it to be ordered ascending by created on.

How can I accomplish that?