class GraphQL::Schema::Warden

def loadable?(type, _ctx)

Returns:
  • (Boolean) - True if this type is used for `loads:` but not in the schema otherwise and not _explicitly_ hidden.
def loadable?(type, _ctx)
  !reachable_type_set.include?(type) && visible_type?(type)
end