Skip to main content

Upgrading to Graphiti 2.0

Graphiti 2.0 requires Ruby 3.2+ and ActiveSupport 7.1+. Rails is not a dependency, but if you use it, 7.1+. Ruby 3.1 and earlier are past end of life, and Rails 6.1 and 7.0 do not support Ruby 3.2. Apps that cannot move yet should stay on the 1.x branch, which remains open for hotfixes.

What you have to change

Four things, and three of them fail loudly if you skip them.

1. Drop three gems. graphiti-rails, graphiti_spec_helpers and graphiti_errors are now part of graphiti itself.

Gemfile
+ gem "graphiti", "~> 2.0.0.beta" # follows the betas and picks up 2.0 final when it ships
- gem "graphiti-rails"
- gem "graphiti_spec_helpers"
- gem "graphiti_errors"

Graphiti raises at load if one is still installed, because they ship files that collide with Graphiti's own, so leaving them in place means load order decides which copy you get.

2. Include the Rails integration in your controllers.

class ApplicationController < ActionController::Base
include Graphiti::Rails::Controller
end

If the controller already has include Graphiti::Rails, replace it with include Graphiti::Rails::Controller.

What the include actually brings, and what a controller without it loses

Until 2.0, Graphiti added itself to every controller in the application: an around_action wrapping each request in a Graphiti context, another wrapping it in the debugger, and a catch-all exception handler, on Devise controllers, admin controllers, HTML pages, everything.

Graphiti::Rails::Controller now bundles all of it, and including it is required. Including it in ApplicationController matches 1.x behavior. Including it in an API base class scopes it and leaves the rest of the app alone. A controller without it gets no Graphiti context, no debugger, and none of Graphiti's exception handlers, so if a resource action sees an empty Graphiti.context, this include is what is missing.

The class-level DSL travels with it, which is the one failure you see before a request is ever served:

class PostsController < ApplicationController
self.sideload_allowlist = {index: [:comments]} # NoMethodError without the include
end

sideload_allowlist comes from Graphiti::Context, so a controller that never includes Graphiti::Rails::Controller raises NoMethodError while the class body is being loaded. Watch for base classes that were given Graphiti::Rails::Responders alone. Responders declares formats and nothing else, and does not carry the context.

Graphiti::Rails::Responders is separate and most apps do not need it. It exists for the responders gem's respond_with, and depends on that gem, which is why it is not part of Graphiti::Rails::Controller.

3. Update around_persistence hooks, if you have any.

They now receive the already-assigned model where they used to receive the attributes hash, so a hook doing attributes[:tenant_id] = current_tenant.id raises. Move that to before_attributes, or set it on the model.

Before and after, and what else moved with it

Attributes are now assigned to the model once, up front, before the persistence hooks run, which is what lets build and find hand you the model before anything is written. See the lifecycle hooks guide for what that enables.

That changes one hook.

around_persistence receives the model, not the attributes hash

It now wraps the save of an already-assigned model, and gets that model:

# 1.x
def do_around_persistence(attributes)
attributes[:tenant_id] = current_tenant.id
model = yield
model.log_saved!
end

# 2.0
def do_around_persistence(model)
model.tenant_id = current_tenant.id # last chance to touch the model before save, inside the transaction
saved = yield
saved.log_saved!
end

To migrate, move attribute-hash modifications to before_attributes (which still receives the mutable hash, before assignment), or set the value on the model as above. Hooks that only wrap their yield, such as transactions, timing and post-save side effects, need no changes. Graphiti 1.x releases warn at runtime when a hook would be affected.

before/around/after_attributes and before/around/after_save are unchanged. Custom create/update adapter overrides keep their 1.x signatures.

Fine print

  • If you inspect the model before saving, the attributes callbacks run at inspection time (in your controller, outside the save transaction). On the plain save path they run inside the transaction, at the same point as 1.x.
  • Writable guards judge persisted state: a guard asking for the model gets a fresh build/find, never the current request's unsaved changes. A payload cannot influence its own authorization.
  • Sideposted child models are still built and assigned during save, and data exposes the pre-assigned root model only.

4. Wrap specs that assert on error payloads.

RSpec.configure do |config|
config.include Graphiti::Rails::TestHelpers, type: :request
end

it "renders a 404" do
handle_request_exceptions { get "/posts/999" }

expect(response.status).to eq(404)
end

Exceptions now propagate untouched in tests rather than rendering, so a spec expecting a 404 body sees the exception raised instead. This is the one that breaks the suite that would otherwise have told you the app was fine.

Why it has to be a request spec

Exceptions propagate untouched in tests as of 2.0. A spec that asserts on a rendered error payload sees the exception raised instead, so wrap the request in handle_request_exceptions. The setup is step 4 of the migration.

It has to be a request spec. Exceptions are rendered in Rack middleware, which controller specs bypass, so the same assertion in a controller spec never sees a rendered payload no matter how it is wrapped.

handle_request_exceptions replaces GraphitiErrors.enable! and .disable!, which toggled rendering globally. Wrapping the request scopes it to the example instead.

Behavior changes to be aware of

Nothing to do here. These change what a client receives or when a callback runs, and none of them warns you, because none of them is a rename.

A belongs_to renders resource linkage in every payload, where 1.x sent only a link

A belongs_to now includes resource linkage in the payload by default, where 1.x sent only a link:

"employee": { "data": { "type": "employees", "id": "1" }, "links": { "related": "..." } }

The id comes from the foreign key already on the parent, so this costs no extra queries, and clients can resolve the relationship against data they already hold instead of following the link. has_many is unchanged, since answering there means a query per record.

Not every belongs_to qualifies. A scope or params block, a base_scope, a polymorphic or remote target or a custom primary_key all mean the foreign key is not the related id, and those keep loading the association, so they stay opt-in as in 1.x.

Relationships are marked linkage: true in schema.json, and the schema check reports a relationship that stops including it.

To go back to the old payload for one relationship:

belongs_to :employee, always_include_resource_ids: false

Or for the whole API, on the resource everything inherits from. The same setting with true is the 2.0 replacement for the Sideload::BelongsTo monkey patch that #167 has been recommending, and it now covers every relationship type rather than only belongs_to:

class ApplicationResource < Graphiti::Resource
self.abstract_class = true

self.always_include_resource_ids_by_default = false
end

How linkage is configured, and when a belongs_to cannot use its foreign key, is covered in Customizing Relationships.

ConflictRequest renders code: "conflict" at 409, where graphiti-rails surfaced it as a 500

Graphiti 1.x shipped two exception systems, graphiti_errors in core and rescue_registry in graphiti-rails, and both loaded in every Rails app. rescue_registry is now the only one, and installs automatically as a dependency.

Graphiti registers handlers for InvalidRequest (400), ConflictRequest (409), RecordNotFound (404), RemoteWrite (400) and SingularSideload (400), plus a fallback that renders anything else as JSON:API. Register your own on any controller:

register_exception MyApp::Forbidden, status: 403
register_exception MyApp::Throttled, status: 429, handler: MyApp::ThrottleHandler

register_exception comes from rescue_registry, which adds it to every controller, so you do not need Graphiti::Rails::Controller to register your own exceptions or to have them rendered. What the include adds is Graphiti's own registrations above, plus the fallback that renders anything unregistered as JSON:API.

Only formats in config.graphiti.handled_exception_formats (default [:jsonapi]) are rendered by Graphiti. Everything else falls through to Rails.

If you subclassed GraphitiErrors::ExceptionHandler, note the interface changed with the gem: it is now build_payload / formatted_response / status_code, not error_payload / status_code(error).

Registering and customizing handlers is covered in Error Handling.

Conflicts now report as conflicts. Graphiti::Errors::ConflictRequest, raised when a PATCH payload's id does not match the URL, used to render a 409 whose body said code: "bad_request", title: "Request Error". It now says code: "conflict", title: "Conflict Error". Under graphiti-rails this exception had no registered handler at all and surfaced as a 500, so for most apps this payload is new rather than changed.

Node#respond_to? answers true for any attribute present in the payload

Node#respond_to? is now a proper respond_to_missing?, so node.respond_to?(:first_name) returns true for attributes present in the payload where it used to return false. Nothing to do unless a spec asserted on the old false.

The node helpers are covered in #jsonapi_data.

Attributes are assigned before the persistence hooks run, so inspecting a model first moves the attributes callbacks outside the save transaction

If you inspect the model before saving, the attributes callbacks run at inspection time, in your controller and outside the save transaction. On the plain save path they run inside the transaction, at the same point as 1.x.

The hooks and their order are covered in Persistence Lifecycle Hooks.

Deprecations you should fix

Every name below still works, warns, and will be removed in the next major. They're easy fixes though, so why not now?

1.x2.0
require "graphiti_spec_helpers/rspec"require "graphiti/spec_helpers/rspec"
GraphitiSpecHelpers::RSpec / ::Sugar / ::Errors::*Graphiti::SpecHelpers::*
require "graphiti-rails"remove / no longer needed
include Graphiti::Railsinclude Graphiti::Rails::Controller
include Graphiti::Respondersinclude Graphiti::Rails::Responders
jsonapi_contextgraphiti_context
GraphitiErrors::Validation::SerializerGraphiti::ErrorSerializers::Validation
GraphitiErrors::InvalidRequest::SerializerGraphiti::ErrorSerializers::InvalidRequest
GraphitiErrors::ConflictRequest::SerializerGraphiti::ErrorSerializers::ConflictRequest
rspec shared contexts "resource testing", "remote api""graphiti resource testing", "graphiti remote api"
GraphitiContextProxyGraphiti::SpecHelpers::ContextProxy
context_namespacecurrent_action
Graphiti::Rails::DEPRECATORGraphiti::DEPRECATOR (the old name still resolves)
require "graphiti_errors", require "graphiti/responders"remove / no longer needed

RSpec.describe PostResource, type: :resource still picks up the resource-testing context automatically. That has not changed.

Removed outright

1.x2.0
include GraphitiErrorsregister_exception is available on every controller
GraphitiErrors::ExceptionHandlersubclass Graphiti::Rails::ExceptionHandler
GraphitiErrors.enable! / .disable!handle_request_exceptions

Without Rails

Using the error serializers and exception handling outside Rails

The serializers move but keep working: Graphiti::ErrorSerializers::Validation, ::InvalidRequest and ::ConflictRequest load with core and need no Rails.

GraphitiErrors::ExceptionHandler, which turned any exception into a JSON:API errors payload, is replaced by RescueRegistry::ExceptionHandler, a runtime dependency now, and usable outside Rails:

require "rack" # or RescueRegistry::ExceptionHandler raises NameError on Rack
require "rescue_registry"

handler = RescueRegistry::ExceptionHandler.new(exception, status: 404)
handler.build_payload # => {errors: [{code: :not_found, status: "404", ...}]}
handler.formatted_response(:json) # => [404, "{\"errors\":[...]}", :json]

register_exception and the rendering are Rails-only, but rescue_registry ships RescueRegistry::ShowExceptions, a Rack middleware for exactly this case. See its README.

GraphitiErrors.logger has no replacement. Graphiti.logger is the nearest thing.