const handler: Handler = {
  update(store, payload) {
    const {dataID, handleKey} = payload
    const record = store.get(dataID)!
    const handleKeyValue = record.getValue(handleKey)
    if (handleKeyValue === undefined) {
      record.setValue(null, handleKey)
    }
  }
}