https://coding-dahee.tistory.com/111 아폴로 습득 후 직접 해보기! 목적: redux, context 대체. 1. isLoggedIn 이라는 변수 만들고 cache에서 가져와보기 client/src/apollo/Apollo.js import {resolvers, typeDefs} from './resolvers'; import {ApolloClient} from 'apollo-client'; import {HttpLink} from 'apollo-link-http'; import {InMemoryCache} from 'apollo-cache-inmemory'; const cache = new InMemoryCache(); const link = new HttpLink({ ur..