getQueryValue

abstract suspend fun getQueryValue(): Q(source)

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

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

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