blob: 78e660311e12b50472eaa7c07de6bf56747b2d00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
dataset = "dataset.toml"
[source]
name = "source"
# This show how the filter in external works.
# Only the lines with Column C = 'France' will be
# matched.
[externals.source-target]
intern_key = ":source.A"
extern_key = ":A"
filters = [
":C = 'France'"
]
[sheet]
columns = [
":A",
":C",
":source-target.A",
":source-target.C",
]
|