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 6.5.1
6.5.1
Created 06 June 2023.
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 "6.5.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.expediagroup:graphql-kotlin-gradle-plugin:6.5.1")
}
}
apply(plugin = "com.expediagroup.graphql")
Using the plugins DSL:
plugins {
id "com.expediagroup.graphql" version "6.5.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.expediagroup:graphql-kotlin-gradle-plugin:6.5.1"
}
}
apply plugin: "com.expediagroup.graphql"