com.apollographql.apollo.gradle.ApolloCodegenArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-gradle-plugin Show documentation
Show all versions of apollo-gradle-plugin Show documentation
Gradle plugin for generating java/kotlin classes for graphql files
package com.apollographql.apollo.gradle;
import java.io.File;
import java.util.Set;
final class ApolloCodegenArgs {
final File schemaFile;
final Set queryFilePaths;
final File irOutputFolder;
ApolloCodegenArgs(File schemaFile, Set queryFilePaths, File irOutputFolder) {
this.schemaFile = schemaFile;
this.queryFilePaths = queryFilePaths;
this.irOutputFolder = irOutputFolder;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy