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

Class ArrayField

packages/client/src/runtime/core/errorRendering/ArrayField.ts:5–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { Value } from './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

Used in the wild real call sites across dependent graphs

searching dependent graphs…