fix order by

This commit is contained in:
liamcottle
2024-03-13 17:12:11 +13:00
parent c3f7e6a3d7
commit f46d7a5ca2

View File

@ -66,7 +66,7 @@ app.get('/api/v1/nodes', async (req, res) => {
node_id: node.node_id, node_id: node.node_id,
}, },
orderBy: { orderBy: {
createdAt: 'desc', created_at: 'desc',
}, },
}), }),
}) })