Class: GraphQL::Relay::GlobalIdResolve

Inherits:
Object
  • Object
show all
Defined in:
lib/graphql/relay/global_id_resolve.rb

Instance Method Summary collapse

Constructor Details

#initialize(type:) ⇒ GlobalIdResolve

Returns a new instance of GlobalIdResolve.



5
6
7
# File 'lib/graphql/relay/global_id_resolve.rb', line 5

def initialize(type:)
  @type = type
end

Instance Method Details

#call(obj, args, ctx) ⇒ Object



9
10
11
# File 'lib/graphql/relay/global_id_resolve.rb', line 9

def call(obj, args, ctx)
  ctx.query.schema.id_from_object(obj, @type, ctx)
end