MCPcopy
hub / github.com/prisma/prisma / ArrayField

Class ArrayField

packages/client/src/runtime/core/errorRendering/ArrayField.ts:5–14  ·  packages/client/src/runtime/core/errorRendering/ArrayField.ts::ArrayField

Source from the content-addressed store, hash-verified

3import { Value } from class="st">'./Value'
4
5export class ArrayField implements ErrorBasicBuilder, Field {
6 constructor(public value: Value) {}
7 write(writer: ErrorWriter): void {
8 writer.write(this.value)
9 }
10
11 markAsError(): void {
12 this.value.markAsError()
13 }
14}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected