I need change order of content in content studio. By default the ordering is modified time DESC, but i need in modified time ASC. Is possible create a node with this parameter? I trying this, but not change after publish content. This is an example of my code
contentLib.create({
parentPath: '/' + app.name + '/myFolder',
name: myName,
branch: 'draft',
contentType: app.name + ':mycontenttype',
language: 'no',
data: data
x: {},
attachments: {},
_childOrder: 'modifiedtime ASC' // This not working
})