Mutations
setDatagridValue
Sets the value of a cell in a datagrid.
MUTATION
setDatagridValue(input: SetDatagridValueInput!): SetDatagridValueArguments
input
required
Returns
datagridValue
Mutation
Variables
Response
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Sets the value of a cell in a datagrid.
setDatagridValue(input: SetDatagridValueInput!): SetDatagridValuemutation SetDatagridValue($input: SetDatagridValueInput!) {
setDatagridValue(input: $input) {
datagridValue {
BooleanValue
DatetimeValue
LastSessionId
MultiselectValues
NumberValue
SelectValue
}
}
}{
"input": {
"columnId": 1,
"rowId": 1
}
}{
"data": {
"setDatagridValue": {
"datagridValue": {
"BooleanValue": true,
"DatetimeValue": "value",
"LastSessionId": "string",
"MultiselectValues": [
"string"
],
"NumberValue": 1.5,
"SelectValue": "string"
}
}
}
}Was this page helpful?
mutation SetDatagridValue($input: SetDatagridValueInput!) {
setDatagridValue(input: $input) {
datagridValue {
BooleanValue
DatetimeValue
LastSessionId
MultiselectValues
NumberValue
SelectValue
}
}
}{
"input": {
"columnId": 1,
"rowId": 1
}
}{
"data": {
"setDatagridValue": {
"datagridValue": {
"BooleanValue": true,
"DatetimeValue": "value",
"LastSessionId": "string",
"MultiselectValues": [
"string"
],
"NumberValue": 1.5,
"SelectValue": "string"
}
}
}
}Suggestions