Skip to content

Commit e9b90ce

Browse files
committed
Add useful references to the "keys" node.
1 parent 92bbda5 commit e9b90ce

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

node/reference/data/import_csv.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ Import a comma-separated value file containing tabular data.
1111
* **Delimiter**: The character used to separate columns.
1212
* **Quotes**: The type of quotes used in the file.
1313
* **Number Separator**: The character used to separate the fractional part.
14+
15+
## Notes
16+
17+
If you want to retrieve the headers of a CSV file, use the [keys](/node/reference/list/keys.html) node.

node/reference/data/lookup.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@ Look up a value in a table or object.
99

1010
* **List**: The input value.
1111
* **Key**: The key to lookup.
12+
13+
14+
## Notes
15+
* This node is often used after a [import CSV](/node/reference/data/import_csv.html) node to retrieve the values of specific columns.
16+
* An advanced feature is to use it to retrieve the properties of graphics objects, like the width of a piece of text. For that, type `bounds.width` in the key field. Use the [keys](/node/reference/list/keys.html) node to discover all possible properties of objects.

0 commit comments

Comments
 (0)