io.github.graphglue.GraphglueCoreConfigurationProperties.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphglue-core Show documentation
Show all versions of graphglue-core Show documentation
A library to develop annotation-based code-first GraphQL servers using GraphQL Kotlin, Spring Boot and Neo4j - excluding Spring GraphQL server dependencies
The newest version!
package io.github.graphglue
import org.springframework.boot.context.properties.ConfigurationProperties
/**
* Configuration properties for Graphglue core
*
* @param maxQueryCost The maximum allowed query complexity
* @param useNeo4jPlugin If true, authorization checks use the io.github.graphglue.authorizationPath custom procedure to improve efficiency. This procedure must be provided via a database plugin
*/
@ConfigurationProperties("graphglue.core")
class GraphglueCoreConfigurationProperties(
val maxQueryCost: Int = 10, val useNeo4jPlugin: Boolean = false
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy