Created
February 26, 2019 15:43
-
-
Save hwillson/71293d035bf397acc36fb893fd17925b to your computer and use it in GitHub Desktop.
Apollo Client - 2.5.0 - Schema
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
const client = new ApolloClient({ | |
cache: new InMemoryCache(), | |
link: new HttpLink({ | |
uri: 'http://localhost:4000/graphql', | |
}), | |
typeDefs: gql` | |
extend type Launch { | |
isInCart: Boolean! | |
} | |
`, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment