Updated By field?
Hi, Im creating some basic workflow to send a notification when someone update a record (a task), but I can not see how to get who made the last update... just who create the record.
How can I access to who made the last change on some record?
Right now my code block are making this query:
query SearchUserByID($userId: UUID!) {
workspaceMembers(filter: { id: { eq: $userId } }, first: 1) {
edges {
node {
id
userEmail
name {
firstName
lastName
}
}
}
}
}
Thanks.
How can I access to who made the last change on some record?
Right now my code block are making this query:
query SearchUserByID($userId: UUID!) {
workspaceMembers(filter: { id: { eq: $userId } }, first: 1) {
edges {
node {
id
userEmail
name {
firstName
lastName
}
}
}
}
}
Thanks.