interface GristNodeParameters {
additionalOptions?: {
filter?: {
filterProperties: {
field: string;
values?: string;
}[];
};
sort?: {
sortProperties: {
direction?: "asc"
| "desc";
field: string;
}[];
};
};
dataToSend?: "autoMapInputs"
| "defineInNode";
docId?: string;
fieldsToSend?: {
properties: {
fieldId?: string;
fieldValue?: string;
}[];
};
inputsToIgnore?: string;
limit?: number;
operation?: "create"
| "getAll"
| "update"
| "delete";
returnAll?: boolean;
rowId?: string;
tableId?: string;
}
Properties§
Source§readonly additional Options?: {
filter?: {
filterProperties: {
field: string;
values?: string;
}[];
};
sort?: {
sortProperties: {
direction?: "asc"
| "desc";
field: string;
}[];
};
}
readonly additional Options?: {
filter?: {
filterProperties: {
field: string;
values?: string;
}[];
};
sort?: {
sortProperties: {
direction?: "asc"
| "desc";
field: string;
}[];
};
}
Source§readonly data To Send?: "autoMapInputs" | "defineInNode"
readonly data To Send?: "autoMapInputs" | "defineInNode"
Whether to insert the input data this node receives in the new row Default: "defineInNode"
Source§readonly doc Id?: string
readonly doc Id?: string
In your document, click your profile icon, then Document Settings, then copy the value under "This document's ID"
Source§readonly fields To Send?: { properties: { fieldId?: string; fieldValue?: string }[] }
readonly fields To Send?: { properties: { fieldId?: string; fieldValue?: string }[] }
Default: {} Type options: {"multipleValueButtonText":"Add Field to Send","multipleValues":true}
Source§readonly inputs To Ignore?: string
readonly inputs To Ignore?: string
List of input properties to avoid sending, separated by commas. Leave empty to send all properties.
Default: {}