class GraphQL::Schema::FieldExtension

def after_resolve(object:, arguments:, context:, value:, memo:)

Returns:
  • (Object) - The return value for this field.

Parameters:
  • memo (Object) -- The third value yielded by {#resolve}, or `nil` if there wasn't one
  • value (Object) -- Whatever the field previously returned
  • context (Query::Context) -- the context for this query
  • arguments (Hash) -- Ruby keyword arguments for resolving this field
  • object (Object) -- The object the field is being resolved on
def after_resolve(object:, arguments:, context:, value:, memo:)
  value
end