- 管理后台 adminT 文案库、结算与代理端页面、表单校验 - 玩家端 vue-i18n 补全首页/公告/串关与 ms 文案 - Element Plus ms 语言包与共享 locale 工具
8 lines
288 B
JavaScript
8 lines
288 B
JavaScript
const { PrismaClient } = require('@prisma/client');
|
|
const p = new PrismaClient();
|
|
p.match
|
|
.findMany({ take: 1, include: { homeTeam: true, awayTeam: true } })
|
|
.then((r) => console.log('OK', r.length))
|
|
.catch((e) => console.error('ERR', e.message))
|
|
.finally(() => p.$disconnect());
|