```prisma model Asset { id Int @id @default(autoincrement()) type String views Int @@allow('all', true) @@delegate(type) } model Post extends Asset { title String } ``` ```ts db.post.count({ where: { views: { gt: 0 } }, }); ```