Grist
Node: grist · Full type: n8n-nodes-base.grist · Version: 1
Credentials
gristApi (alias: @grist)
CREDENTIAL @grist = gristApi "My Grist"
Operations
create
| Parameter |
Type |
Default |
Details |
dataToSend |
options |
"defineInNode" |
autoMapInputs, defineInNode |
inputsToIgnore |
string |
"" |
|
fieldsToSend |
fixedCollection |
{} |
groups: properties |
delete
| Parameter |
Type |
Default |
Details |
rowId |
string |
"" |
required |
getAll
| Parameter |
Type |
Default |
Details |
returnAll |
boolean |
false |
|
limit |
number |
50 |
|
additionalOptions |
collection |
{} |
keys: filter, sort |
update
| Parameter |
Type |
Default |
Details |
rowId |
string |
"" |
required |
dataToSend |
options |
"defineInNode" |
autoMapInputs, defineInNode |
inputsToIgnore |
string |
"" |
|
fieldsToSend |
fixedCollection |
{} |
groups: properties |
Common Parameters
| Parameter |
Type |
Default |
Details |
docId |
string |
"" |
required |
tableId |
string |
"" |
required |
Parameter Details
additionalOptions children:
| Parameter |
Type |
Default |
Details |
filter |
fixedCollection |
{} |
groups: filterProperties |
sort |
fixedCollection |
{} |
groups: sortProperties |
fieldsToSend children:
properties group:
| Parameter |
Type |
Default |
Details |
fieldId |
options |
"" |
|
fieldValue |
string |
"" |
|
Example
NODE "grist" @grist AS "Grist" {
operation: "create",
docId: {{ $json.docId }},
tableId: {{ $json.tableId }},
rowId: {{ $json.rowId }}
}