Fetch multiple objects info in LWC
Let's look at how can we fetch multiple objects info in LWC using the out-of-the-box named import.
In LWC one of the major challenges is we need to import everything before we use it. At times it can be very frustrating as we need to import objects, fields, LDS methods and, etc.
That too, when you need to import info related to metadata describing the fields, child relationships, record type, and theme for each object it becomes very tedious. Hence LWC comes to our resuce here by providing us an out of box helper named import getObjectInfos
Let's look at an example!
The response that we get back is going to have info about the objects in the order that we have expected.
In this above example am trying to wire the output of a method to a function and logging it using the notation data
whereas if you try to wire it to a property then you need to use the notation propertyName.data
to fetch the requested info.
Hope this was helpful!