All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.apollographql.execution.gradle.ApolloExecutionService.kt Maven / Gradle / Ivy

The newest version!
package com.apollographql.execution.gradle

import org.gradle.api.file.RegularFileProperty
import org.gradle.api.provider.Property

abstract class ApolloExecutionService {
  abstract var packageName: String
  abstract val schemaPath: Property

  init {
    schemaPath.set("graphql/schema.graphqls")
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy