Link is a reference object to another entity that can be resolved using tools such as contentful-resolve

interface Link<T> {
    sys: {
        id: string;
        linkType: T;
        type: "Link";
    };
}

Type Parameters

  • T extends string

Properties

Properties

sys: {
    id: string;
    linkType: T;
    type: "Link";
}