获取所有标签的名称
()
| 106 | |
| 107 | /** 获取所有标签的名称 */ |
| 108 | async getAllNames() { |
| 109 | return (await this.getAll()).map(({ name }) => name) |
| 110 | }, |
| 111 | |
| 112 | async findMany(query?: z.output<typeof findManyTagsSchema>) { |
| 113 | const userId = await getAuthedUserId() |
nothing calls this directly
no outgoing calls
no test coverage detected