Get
Summary
Get note by id from workspace Differs from dendron note lookup in the following ways
- Search by id instead of fname
- No note gets created if note id is not found
Options
query
- type: string
Note id to get.
output
- default:
json
- values:
json|md_gfm|md_dendron
- json: JSON output
- md_dendron: dendron markdown
- md_gfm: github flavored markdown
Controls how note is formatted
Examples
dendron note get --query "apples"
- output
- NOTE: this is truncated for easy viewing
[
{
"id": "apples",
"title": "Apples",
"desc": "",
"updated": 1598457956604,
"created": 1598457956604,
"custom": {},
"fname": "dendron.apples",
"type": "note",
"vault": {
"fsPath": "vault"
},
"links": [
{
"type": "wiki",
"from": {
"fname": "dendron.apples",
"id": "apples",
"vaultName": "vault"
},
"value": "dendron.boy",
"alias": "dendron.boy",
"position": {
"start": {
"line": 4,
"column": 7,
"offset": 15
},
"end": {
"line": 4,
"column": 22,
"offset": 30
},
"indent": []
},
"xvault": false,
"sameFile": false,
"to": {
"fname": "dendron.boy"
}
},
...
]