ResolverCachingConfig

data class ResolverCachingConfig(val cachingKeys: List<String>? = null, val ttl: Int? = null)

Constructors

Link copied to clipboard
constructor(cachingKeys: List<String>? = null, ttl: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val cachingKeys: List<String>? = null

The caching keys for a resolver that has caching activated. Valid values are entries from the $context.arguments, $context.source, and $context.identity maps.

Link copied to clipboard
val ttl: Int? = null

The TTL in seconds for a resolver that has caching activated. Valid values are between 1 and 3600 seconds.