com.expediagroup.graphql
Owner: Expedia Group Open Source
Gradle Plugin that can generate type-safe GraphQL Kotlin client
https://expediagroup.github.io/graphql-kotlin
Sources: https://github.com/ExpediaGroup/graphql-kotlin
Version 5.0.0
5.0.0
Created 29 September 2021.
Gradle Plugin that can generate type-safe GraphQL Kotlin client and GraphQL schema in SDL format using reflections
Using the plugins DSL:
plugins {
id("com.expediagroup.graphql") version "5.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.expediagroup:graphql-kotlin-gradle-plugin:5.0.0")
}
}
apply(plugin = "com.expediagroup.graphql")
Using the plugins DSL:
plugins {
id "com.expediagroup.graphql" version "5.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.expediagroup:graphql-kotlin-gradle-plugin:5.0.0"
}
}
apply plugin: "com.expediagroup.graphql"