├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── rngraphcool │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── app ├── AddBook.js ├── Book.js ├── Books.js ├── app.js ├── assets │ ├── addIcon.png │ ├── bookitlogo.png │ └── booksIcon.png └── index.js ├── index.android.js ├── index.ios.js ├── ios ├── RNGraphCool-tvOS │ └── Info.plist ├── RNGraphCool-tvOSTests │ └── Info.plist ├── RNGraphCool.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── RNGraphCool-tvOS.xcscheme │ │ └── RNGraphCool.xcscheme ├── RNGraphCool │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── RNGraphCoolTests │ ├── Info.plist │ └── RNGraphCoolTests.m ├── package.json ├── schema.graphql └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/rngraphcool/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/java/com/rngraphcool/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rngraphcool/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/java/com/rngraphcool/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/app.json -------------------------------------------------------------------------------- /app/AddBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/app/AddBook.js -------------------------------------------------------------------------------- /app/Book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/app/Book.js -------------------------------------------------------------------------------- /app/Books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/app/Books.js -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/app/app.js -------------------------------------------------------------------------------- /app/assets/addIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/app/assets/addIcon.png -------------------------------------------------------------------------------- /app/assets/bookitlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/app/assets/bookitlogo.png -------------------------------------------------------------------------------- /app/assets/booksIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/app/assets/booksIcon.png -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/app/index.js -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | import './app/'; -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | import './app/'; -------------------------------------------------------------------------------- /ios/RNGraphCool-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCool-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/RNGraphCool-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCool-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/RNGraphCool.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCool.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNGraphCool.xcodeproj/xcshareddata/xcschemes/RNGraphCool-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCool.xcodeproj/xcshareddata/xcschemes/RNGraphCool-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/RNGraphCool.xcodeproj/xcshareddata/xcschemes/RNGraphCool.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCool.xcodeproj/xcshareddata/xcschemes/RNGraphCool.xcscheme -------------------------------------------------------------------------------- /ios/RNGraphCool/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCool/AppDelegate.h -------------------------------------------------------------------------------- /ios/RNGraphCool/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCool/AppDelegate.m -------------------------------------------------------------------------------- /ios/RNGraphCool/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCool/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/RNGraphCool/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCool/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RNGraphCool/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCool/Info.plist -------------------------------------------------------------------------------- /ios/RNGraphCool/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCool/main.m -------------------------------------------------------------------------------- /ios/RNGraphCoolTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCoolTests/Info.plist -------------------------------------------------------------------------------- /ios/RNGraphCoolTests/RNGraphCoolTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/ios/RNGraphCoolTests/RNGraphCoolTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/package.json -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/schema.graphql -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/apollo-subscriptions-book-club/HEAD/yarn.lock --------------------------------------------------------------------------------