Last active
September 11, 2021 20:04
-
-
Save olalekanteeblaze/3a0589d570e82b5fa66e916e31c7d353 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
ApolloClient, | |
InMemoryCache, | |
ApolloProvider, | |
useQuery, | |
gql | |
} from "@apollo/client"; | |
const client = new ApolloClient({ | |
uri: 'https://countries.trevorblades.com/', | |
cache: new InMemoryCache() | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment