demarches-normaliennes/app/graphql/connections/deleted_dossiers_connection.rb
2024-08-22 09:26:48 +02:00

15 lines
226 B
Ruby

# frozen_string_literal: true
module Connections
class DeletedDossiersConnection < CursorConnection
private
def order_column
:deleted_at
end
def order_table
:deleted_dossiers
end
end
end