Search Gradle plugins

Version 4.1.0 (latest)

4.1.0

Created 05 November 2024.

Automatically generates typesafe java and kotlin models from your GraphQL files.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.apollographql.apollo") version "4.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.apollographql.apollo:apollo-gradle-plugin:4.1.0")
      }
    }
    
    apply(plugin = "com.apollographql.apollo")
  • Applying plugins to all subprojects .