You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some property names has changed and your GraphQL queries need to be updated.
176
+
177
+
TODO: Complete the list of renamed elements
178
+
179
+
| 3.3 name | 4.0 name |
180
+
|:---------|:---------|
181
+
|`_info`|`_contentInfo`|
182
+
183
+
TODO: Example with more renamed elements
184
+
185
+
Example of updated query
186
+
187
+
<table><tbody><tr><td>
188
+
```graphql
189
+
{
190
+
content {
191
+
folder(id: 1) {
192
+
_info {
193
+
name
194
+
}
195
+
}
196
+
}
197
+
}
198
+
```
199
+
</td><td>
200
+
```graphql
201
+
{
202
+
content {
203
+
folder(contentId: 1) {
204
+
_contentInfo{
205
+
name
206
+
}
207
+
}
208
+
}
209
+
}
210
+
```
211
+
</td></tr></tbody></table>
212
+
171
213
### Back office customization
172
214
173
215
The v4 version of [[= product_name =]] is using Bootstrap 5 in the back office. If you were using Bootstrap 4 for styling, you need to update and adjust all custom back office components [following the migration guide from Bootstrap 4](https://getbootstrap.com/docs/5.0/migration/).
0 commit comments