Neal Sanche
12/15/2021, 10:01 PMNeal Sanche
12/15/2021, 10:58 PMfun watch(): Flow<List<Account>> =
        apolloClient.query(GetAccountsQuery())
            .fetchPolicy(FetchPolicy.NetworkFirst)
            .refetchPolicy(FetchPolicy.CacheOnly)
            .watch()
            .map { response ->
                response.data!!.accounts.map { it.account }
            }CacheOnlyNetworkFirst