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
| FROM gradle:latest | |
| # FROM openjdk:8-jre-alpine | |
| USER root | |
| # RUN apk --no-cache add curl | |
| ENV SDK_URL="https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip" \ | |
| ANDROID_HOME="/usr/local/android-sdk" \ | |
| ANDROID_VERSION=28 \ | |
| ANDROID_BUILD_TOOLS_VERSION=29.0.2 | |
| # Download Android SDK | |
| RUN mkdir "$ANDROID_HOME" .android \ |
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
| export default function LocalePlugin (builder) { | |
| builder.hook('GraphQLObjectType:fields:field', (field, build, ctx) => { | |
| const { pgSql: sql, inflection, options } = build | |
| const { | |
| scope: { pgFieldIntrospection }, | |
| addDataGenerator | |
| } = ctx | |
| if ( |
OlderNewer