Interface GraphQLReferencedResourceNotFoundError

Returned when a resource referenced by a Reference or a ResourceIdentifier could not be found.

interface GraphQLReferencedResourceNotFoundError {
    code: "ReferencedResourceNotFound";
    id?: string;
    key?: string;
    typeId: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

code: "ReferencedResourceNotFound"
id?: string

Unique identifier of the referenced resource, if known.

key?: string

User-defined unique identifier of the referenced resource, if known.

typeId: string

Type of referenced resource.

Generated using TypeDoc