Best way to save a document with strapi (without using underlying mongoose)?

To access ORM add .model after .query()

let record = strapi.query('restaurant').model.findOne({ id: 1 })
record.title = 'new title'
record.save()