2018-11-19 20:58:51 +01:00
|
|
|
class Api::V2::Schema < GraphQL::Schema
|
|
|
|
default_max_page_size 100
|
|
|
|
max_complexity 300
|
|
|
|
max_depth 15
|
|
|
|
|
2018-11-19 21:06:13 +01:00
|
|
|
query Types::QueryType
|
|
|
|
mutation Types::MutationType
|
|
|
|
|
2018-11-20 22:59:51 +01:00
|
|
|
def self.id_from_object(object, type_definition, ctx)
|
|
|
|
object.to_typed_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.object_from_id(id, query_ctx)
|
|
|
|
ApplicationRecord.record_from_typed_id(id)
|
|
|
|
rescue => e
|
|
|
|
raise GraphQL::ExecutionError.new(e.message, extensions: { code: :not_found })
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.resolve_type(type, obj, ctx)
|
|
|
|
case obj
|
|
|
|
when Procedure
|
|
|
|
Types::DemarcheType
|
|
|
|
when Dossier
|
|
|
|
Types::DossierType
|
2018-11-23 18:54:51 +01:00
|
|
|
when Commentaire
|
|
|
|
Types::MessageType
|
2018-11-20 22:59:51 +01:00
|
|
|
when Instructeur, User
|
|
|
|
Types::ProfileType
|
|
|
|
else
|
|
|
|
raise GraphQL::ExecutionError.new("Unexpected object: #{obj}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-19 20:58:51 +01:00
|
|
|
def self.unauthorized_object(error)
|
|
|
|
# Add a top-level error to the response instead of returning nil:
|
|
|
|
raise GraphQL::ExecutionError.new("An object of type #{error.type.graphql_name} was hidden due to permissions", extensions: { code: :unauthorized })
|
|
|
|
end
|
|
|
|
|
|
|
|
middleware(GraphQL::Schema::TimeoutMiddleware.new(max_seconds: 5) do |_, query|
|
|
|
|
Rails.logger.info("GraphQL Timeout: #{query.query_string}")
|
|
|
|
end)
|
|
|
|
|
|
|
|
if Rails.env.development?
|
|
|
|
query_analyzer(GraphQL::Analysis::QueryComplexity.new do |_, complexity|
|
|
|
|
Rails.logger.info("[GraphQL Query Complexity] #{complexity}")
|
|
|
|
end)
|
|
|
|
query_analyzer(GraphQL::Analysis::QueryDepth.new do |_, depth|
|
|
|
|
Rails.logger.info("[GraphQL Query Depth] #{depth}")
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
use GraphQL::Batch
|
|
|
|
use GraphQL::Tracing::SkylightTracing
|
|
|
|
end
|