1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// Like withReverseReferenceList, but this is specifically for special "unique"
// references, meaning this thing is referenced by exactly one or zero things
// in the data list.
import {input, templateCompositeFrom} from '#composite';
import gobbleSoupyReverse from './gobbleSoupyReverse.js';
import inputSoupyReverse from './inputSoupyReverse.js';
import inputWikiData from './inputWikiData.js';
import withResolvedReverse from './helpers/withResolvedReverse.js';
export default templateCompositeFrom({
annotation: `withUniqueReferencingThing`,
inputs: {
data: inputWikiData({allowMixedTypes: true}),
reverse: inputSoupyReverse(),
},
outputs: ['#uniqueReferencingThing'],
steps: () => [
gobbleSoupyReverse({
reverse: input('reverse'),
}),
withResolvedReverse({
data: input('data'),
reverse: '#reverse',
options: input.value({unique: true}),
}).outputs({
'#resolvedReverse': '#uniqueReferencingThing',
}),
],
});
|