withMeta()

_meta is only filled if you have defined in your model static config = { model: { withMeta = true } } or globally set by configuration

Usage

import { useRepo } from 'pinia-orm'
import User from './models/User'
const userRepo = useRepo(User)
// gives you access to the default hidden prop '_meta'
userRepo.withMeta().first()

Typescript Declarations

function withMeta(): Query