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