Updated Date Field type
Updated Date field displays the last date and time a record was modified on the board. Check this help guide to learn more about this field type.
Arguments
Fields
Create an Updated Date Field Type
operator name : fields
Argument | Description | |
---|---|---|
boardId String | ||
dto |
mutation {
fields(
boardId: "6152bff8ee3a6e000130edbb"
dto: {
name: "Date Updated"
description: "This is a Updated date field type"
type: "lastUpdatedTime"
unique: true
isVisibleOnTable:true
typeData: {}
}
) {
id
fieldsSecret {
name
description
type
typeData {
padding
starting_point
}
unique
dontUpdate
}
createdTime
boardId
isVisibleOnTable
}
}
{
"data": {
"fields": {
"id": "6167aece0155110001c03f94",
"fieldsSecret": {
"name": "Date Updated",
"description": "This is a Updated date field type",
"type": "lastUpdatedTime",
"typeData": {
"padding": null,
"starting_point": null
},
"unique": true,
"dontUpdate": false
},
"createdTime": "Thu Oct 14 04:15:10 GMT 2021",
"boardId": "6152bff8ee3a6e000130edbb",
"isVisibleOnTable": true,
}
}
}
Update an Updated Date Field Type
operator name : updateFields
Argument | Description | |
---|---|---|
boardId | ||
fieldId | ||
dto |
mutation {
updateFields(
boardId: "6152bff8ee3a6e000130edbb"
fieldId:"6167aece0155110001c03f94"
dto: {
name: "Updated Date"
description: "This is a Updated date field type"
type: "lastUpdatedTime"
unique: true
isVisibleOnTable:true
typeData: {}
}
) {
id
fieldsSecret {
name
description
type
typeData {
padding
starting_point
}
unique
dontUpdate
}
createdTime
boardId
isVisibleOnTable
}
}
{
"data": {
"updateFields": {
"id": "6167aece0155110001c03f94",
"fieldsSecret": {
"name": "Updated Date",
"description": "This is a Updated date field type",
"type": "lastUpdatedTime",
"typeData": {
"padding": null,
"starting_point": null
},
"unique": true,
"dontUpdate": false
},
"createdTime": "Thu Oct 14 04:15:10 GMT 2021",
"boardId": "6152bff8ee3a6e000130edbb",
"isVisibleOnTable": true,
}
}
}
Delete an Updated Date Field Type
operator name : deleteFields
Argument | Description | |
---|---|---|
boardId String | ||
fieldId String |
mutation {
deleteFields(
boardId: "6152bff8ee3a6e000130edbb"
fieldId: "6167aece0155110001c03f94"
)
}
{
"data": {
"deleteFields": "SUCCESS"
}
}
Updated about 3 years ago