interface ContentfulNodeParameters {
additionalFields?:
| { rawData?: boolean }
| {
content_type?: string;
equal?: string;
exclude?: string;
exist?: string;
include?: string;
notEqual?: string;
order?: string;
query?: string;
rawData?: boolean;
select?: string;
}
| {
equal?: string;
exclude?: string;
exist?: string;
include?: string;
notEqual?: string;
order?: string;
query?: string;
rawData?: boolean;
select?: string;
};
assetId?: string;
contentTypeId?: string;
entryId?: string;
environmentId?: string;
limit?: number;
operation?: "get"
| "getAll";
resource?:
| "locale"
| "asset"
| "contentType"
| "entry"
| "space";
returnAll?: boolean;
source?: "deliveryApi"
| "previewApi";
}Properties§
§§§§§§
readonly additional Fields?:
| { rawData?: boolean }
| {
content_type?: string;
equal?: string;
exclude?: string;
exist?: string;
include?: string;
notEqual?: string;
order?: string;
query?: string;
rawData?: boolean;
select?: string;
}
| {
equal?: string;
exclude?: string;
exist?: string;
include?: string;
notEqual?: string;
order?: string;
query?: string;
rawData?: boolean;
select?: string;
}§
readonly asset Id?: string§readonly content Type Id?: string§readonly entry Id?: string§readonly environment Id?: stringThe ID for the Contentful environment (e.g. master, staging, etc.). Depending on your plan, you might not have environments. In that case use "master". Default: "master"
readonly limit?: numberMax number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
readonly operation?: "get" | "getAll"Default: "get"
readonly resource?: "locale" | "asset" | "contentType" | "entry" | "space"Default: "entry"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly source?: "deliveryApi" | "previewApi"Pick where your data comes from, delivery or preview API Default: "deliveryApi"
Default: {}