module GraphQL::Tracing::PlatformTrace::BaseKeyCache

def initialize

def initialize
  @platform_field_key_cache = Hash.new { |h, k| h[k] = platform_field_key(k) }
  @platform_authorized_key_cache = Hash.new { |h, k| h[k] = platform_authorized_key(k) }
  @platform_resolve_type_key_cache = Hash.new { |h, k| h[k] = platform_resolve_type_key(k) }
end