replace incorrect field name in coalesce example

field in the example should be `telegram` (not `icq`)
This commit is contained in:
Antonio Bonuccelli 2023-11-28 10:20:02 +01:00 committed by GitHub
parent 57a4492275
commit 612c6be204
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -164,7 +164,7 @@ Consider a list of contacts that may specify multiple ways to contact a customer
└──────────┴──────┴───────────┴───────────┘
```
The `mail` and `phone` fields are of type String, but the `icq` field is `UInt32`, so it needs to be converted to `String`.
The `mail` and `phone` fields are of type String, but the `telegram` field is `UInt32`, so it needs to be converted to `String`.
Get the first available contact method for the customer from the contact list: