Returned when a resource cannot be deleted because it is being referenced by another resource.

interface GraphQLReferenceExistsError {
    code: "ReferenceExists";
    referencedBy?: string;
    [key: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

Properties

code: "ReferenceExists"

One of the error codes that is listed on the Errors page.

referencedBy?: string

Type of referenced resource.