|
12 | 12 | type: string |
13 | 13 | index: not_analyzed |
14 | 14 | include_in_all: false |
15 | | - indexing: ${persistenceObjectIdentifier} |
| 15 | + indexing: '${persistenceObjectIdentifier}' |
16 | 16 |
|
17 | 17 | '__identifier': |
18 | 18 | elasticSearch: |
19 | 19 | mapping: |
20 | 20 | type: string |
21 | 21 | index: not_analyzed |
22 | 22 | include_in_all: false |
23 | | - indexing: ${node.getIdentifier()} |
| 23 | + indexing: '${node.getIdentifier()}' |
24 | 24 |
|
25 | 25 | '__workspace': |
26 | 26 | elasticSearch: |
27 | 27 | mapping: |
28 | 28 | type: string |
29 | 29 | index: not_analyzed |
30 | 30 | include_in_all: false |
31 | | - indexing: ${node.getWorkspace().getName()} |
| 31 | + indexing: '${node.getWorkspace().getName()}' |
32 | 32 |
|
33 | 33 | '__path': |
34 | 34 | elasticSearch: |
35 | 35 | mapping: |
36 | 36 | type: string |
37 | 37 | index: not_analyzed |
38 | 38 | include_in_all: false |
39 | | - indexing: ${node.getPath()} |
| 39 | + indexing: '${node.getPath()}' |
40 | 40 |
|
41 | 41 | '__parentPath': |
42 | 42 | elasticSearch: |
|
45 | 45 | index: not_analyzed |
46 | 46 | include_in_all: false |
47 | 47 | # we index *all* parent paths as separate tokens to allow for efficient searching without a prefix query |
48 | | - indexing: ${ElasticSearch.buildAllPathPrefixes(node.getParentPath())} |
| 48 | + indexing: '${ElasticSearch.buildAllPathPrefixes(node.getParentPath())}' |
49 | 49 |
|
50 | 50 | '__sortIndex': |
51 | 51 | elasticSearch: |
52 | 52 | mapping: |
53 | 53 | type: integer |
54 | 54 | include_in_all: false |
55 | | - indexing: ${node.getIndex()} |
| 55 | + indexing: '${node.getIndex()}' |
56 | 56 |
|
57 | 57 | '_removed': |
58 | 58 | elasticSearch: |
|
66 | 66 | type: string |
67 | 67 | index: not_analyzed |
68 | 68 | include_in_all: false |
69 | | - indexing: ${ElasticSearch.extractNodeTypeNamesAndSupertypes(node.getNodeType())} |
| 69 | + indexing: '${ElasticSearch.extractNodeTypeNamesAndSupertypes(node.getNodeType())}' |
70 | 70 |
|
71 | 71 | 'unstructured': *node |
72 | 72 |
|
73 | 73 | 'TYPO3.Neos:Hidable': |
74 | 74 | properties: |
75 | 75 | '_hidden': |
76 | 76 | elasticSearch: |
77 | | - indexing: ${node.isHidden()} |
| 77 | + indexing: '${node.isHidden()}' |
78 | 78 |
|
79 | 79 | 'TYPO3.Neos:Timable': |
80 | 80 | properties: |
|
84 | 84 | type: date |
85 | 85 | include_in_all: false |
86 | 86 | format: 'date_time_no_millis' |
87 | | - indexing: ${(node.hiddenBeforeDateTime ? node.hiddenBeforeDateTime.format('Y-m-d\TH:i:s') + 'Z' : null)} |
| 87 | + indexing: '${(node.hiddenBeforeDateTime ? node.hiddenBeforeDateTime.format("Y-m-d\TH:i:s") + "Z" : null)}' |
88 | 88 |
|
89 | 89 |
|
90 | 90 | '_hiddenAfterDateTime': |
|
93 | 93 | type: date |
94 | 94 | include_in_all: false |
95 | 95 | format: 'date_time_no_millis' |
96 | | - indexing: ${(node.hiddenAfterDateTime ? node.hiddenAfterDateTime.format('Y-m-d\TH:i:s') + 'Z' : null)} |
| 96 | + indexing: '${(node.hiddenAfterDateTime ? node.hiddenAfterDateTime.format("Y-m-d\TH:i:s") + "Z" : null)}' |
97 | 97 |
|
98 | 98 |
|
99 | 99 | 'TYPO3.Neos:Document': |
|
148 | 148 | properties: |
149 | 149 | 'text': |
150 | 150 | elasticSearch: |
151 | | - fulltextExtractor: ${ElasticSearch.fulltext.extractHtmlTags(value)} |
| 151 | + fulltextExtractor: '${ElasticSearch.fulltext.extractHtmlTags(value)}' |
152 | 152 |
|
153 | 153 | 'TYPO3.Neos.NodeTypes:Headline': |
154 | 154 | properties: |
155 | 155 | 'title': |
156 | 156 | elasticSearch: |
157 | | - fulltextExtractor: ${ElasticSearch.fulltext.extractHtmlTags(value)} |
| 157 | + fulltextExtractor: '${ElasticSearch.fulltext.extractHtmlTags(value)}' |
0 commit comments