getObjectValue

abstract suspend fun getObjectValue(): O(source)

Returns a synchronously-accessible version of objectValue where all selections have been eagerly resolved.

Unlike objectValue which resolves selections lazily on access, this method awaits the resolution of all selections upfront, returning a O that can be accessed synchronously without suspending.

Use this when you need to ensure all object value data is available before proceeding, or when passing the object value to non-suspending code.