com.apollographql.apollo
Owner: ApollGraphQL
Automatically generates typesafe java and kotlin models from your GraphQL files.
https://github.com/apollographql/apollo-kotlin
Sources: https://github.com/apollographql/apollo-android
Version 1.3.3
1.3.3
Created 07 March 2020.
Automatically generates typesafe java and kotlin models from your GraphQL files.
Using the plugins DSL:
plugins {
id("com.apollographql.apollo") version "1.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.apollographql.apollo:apollo-gradle-plugin:1.3.3")
}
}
apply(plugin = "com.apollographql.apollo")
Using the plugins DSL:
plugins {
id "com.apollographql.apollo" version "1.3.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.apollographql.apollo:apollo-gradle-plugin:1.3.3"
}
}
apply plugin: "com.apollographql.apollo"