> For the complete documentation index, see [llms.txt](https://db.coolstone.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://db.coolstone.dev/0/reference/api/modify-records.md).

# Modify Records

## Modify Record Content

Change the Record's key's value to something.

```javascript
import { modifyRecordValueByTag } from 'dubnium'
modifyRecordValueByTag("tag", "key", "value")
```

## Overwrite Record Content

Overwrite a Record found by it's tag.

```javascript
import { overwriteByTag } from 'dubnium'
overwriteByTag("tag",{"data":"here"})
```

## Modify Record's tag

Change a Record's tag found by its current tag.

```javascript
import { modifyTag } from 'dubnium'
modifyTag("old_tag","new_tag")
```
