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
* index name should be the short resource name in lower snake case;
45
45
* the default `_doc` type should be used;
46
-
* all fields should be lower case and should use snake case for combining words.
46
+
* all fields should be lower case and should use camel case for combining words.
47
47
48
48
This involves having mappings and models which absolutely match each other.
49
49
@@ -222,7 +222,7 @@ class Tweet
222
222
}
223
223
```
224
224
225
-
API Platform will automatically disable write operations and snake case document fields will automatically be converted to
225
+
API Platform will automatically disable write operations and camel case document fields will automatically be converted to
226
226
camel case object properties during serialization.
227
227
228
228
Keep in mind that it is your responsibility to populate your Elasticsearch index. To do so, you can use [Logstash](https://www.elastic.co/products/logstash),
0 commit comments