File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed
Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -68,13 +68,13 @@ update_settings_1: |-
6868 distinct_attribute: 'movie_id',
6969 searchable_attributes: [
7070 'title',
71- 'description ',
72- 'genre '
71+ 'overview ',
72+ 'genres '
7373 ],
7474 displayed_attributes: [
7575 'title',
76- 'description ',
77- 'genre ',
76+ 'overview ',
77+ 'genres ',
7878 'release_date'
7979 ],
8080 stop_words: [
@@ -135,8 +135,8 @@ get_searchable_attributes_1: |-
135135update_searchable_attributes_1 : |-
136136 client.index('movies').update_searchable_attributes([
137137 'title',
138- 'description ',
139- 'genre '
138+ 'overview ',
139+ 'genres '
140140 ])
141141reset_searchable_attributes_1 : |-
142142 client.index('movies').reset_searchable_attributes
@@ -154,8 +154,8 @@ get_displayed_attributes_1: |-
154154update_displayed_attributes_1 : |-
155155 client.index('movies').update_displayed_attributes([
156156 'title',
157- 'description ',
158- 'genre ',
157+ 'overview ',
158+ 'genres ',
159159 'release_date'
160160 ])
161161reset_displayed_attributes_1 : |-
@@ -173,15 +173,15 @@ distinct_attribute_guide_1: |-
173173field_properties_guide_searchable_1 : |-
174174 client.index('movies').update_searchable_attributes([
175175 'title',
176- 'description ',
177- 'genre '
176+ 'overview ',
177+ 'genres '
178178 ])
179179field_properties_guide_displayed_1 : |-
180180 client.index('movies').update_settings({
181181 displayed_attributes: [
182182 'title',
183- 'description ',
184- 'genre ',
183+ 'overview ',
184+ 'genres ',
185185 'release_date'
186186 ]
187187 })
@@ -266,16 +266,16 @@ settings_guide_searchable_1: |-
266266 client.index('movies').update_settings({
267267 searchable_attributes: [
268268 'title',
269- 'description ',
270- 'genre '
269+ 'overview ',
270+ 'genres '
271271 ]
272272 })
273273settings_guide_displayed_1 : |-
274274 client.index('movies').update_settings({
275275 displayed_attributes: [
276276 'title',
277- 'description ',
278- 'genre ',
277+ 'overview ',
278+ 'genres ',
279279 'release_date'
280280 ]
281281 })
You can’t perform that action at this time.
0 commit comments