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.



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

def initialize(type:)
  @type = type
end

Instance Method Details

#call(obj, args, ctx) ⇒ Object



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

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