demarches-normaliennes/app/controllers/graphql_controller.rb
2023-03-22 10:19:56 +01:00

15 lines
403 B
Ruby

class GraphqlController < ApplicationController
before_action :authenticate_administrateur!
def playground
procedure = current_administrateur.procedures&.last
gon.default_query = API::V2::StoredQuery.get('ds-query-v2')
gon.default_variables = {
"demarcheNumber": procedure&.id,
"includeDossiers": true
}.compact.to_json
render :playground, layout: false
end
end