This repository was archived by the owner on Dec 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +34
-3
lines changed
Expand file tree Collapse file tree 5 files changed +34
-3
lines changed Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<projectDescription >
3- <name >android </name >
3+ <name >ContentstackReactNative </name >
44 <comment >Project android created by Buildship.</comment >
55 <projects >
66 </projects >
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <classpath >
3+ <classpathentry kind =" con" path =" org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/" />
4+ <classpathentry kind =" con" path =" org.eclipse.buildship.core.gradleclasspathcontainer" />
5+ <classpathentry kind =" output" path =" bin/default" />
6+ </classpath >
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <projectDescription >
3+ <name >app</name >
4+ <comment >Project app created by Buildship.</comment >
5+ <projects >
6+ </projects >
7+ <buildSpec >
8+ <buildCommand >
9+ <name >org.eclipse.jdt.core.javabuilder</name >
10+ <arguments >
11+ </arguments >
12+ </buildCommand >
13+ <buildCommand >
14+ <name >org.eclipse.buildship.core.gradleprojectbuilder</name >
15+ <arguments >
16+ </arguments >
17+ </buildCommand >
18+ </buildSpec >
19+ <natures >
20+ <nature >org.eclipse.jdt.core.javanature</nature >
21+ <nature >org.eclipse.buildship.core.gradleprojectnature</nature >
22+ </natures >
23+ </projectDescription >
Original file line number Diff line number Diff line change 1+ connection.project.dir =..
2+ eclipse.preferences.version =1
Original file line number Diff line number Diff line change 11import { ApolloClient } from 'apollo-client' ;
22import { HttpLink } from 'apollo-link-http' ;
33import { InMemoryCache } from 'apollo-cache-inmemory' ;
4- const GRAPHQL_ENDPOINT = `https://dev-graphql.contentstack.io/stacks/blt44d915c18f115370/explore ?access_token=cs551d666a332e455a34174bd0&environment=production` ;
4+ const GRAPHQL_ENDPOINT = `https://dev-graphql.contentstack.io/stacks/blt44d915c18f115370?access_token=cs551d666a332e455a34174bd0&environment=production` ;
55
66const apolloClient = ( ) => {
77 const link = new HttpLink ( {
88 uri : GRAPHQL_ENDPOINT ,
9-
9+ fetchOptions : { method : "GET" }
1010 } ) ;
1111 return new ApolloClient ( {
1212 link,
You can’t perform that action at this time.
0 commit comments