This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package controllers.graphql | |
| import com.google.inject.{Inject, Singleton} | |
| import keycloak.{GraphQLAction, Upload, VerifiedToken} | |
| import models.graphql.GraphQL | |
| import models.graphql.error.{AuthenticationException, ContentException, NotFoundByIDException, PermissionException} | |
| import models.graphql.schemas.context.SangriaContext | |
| import play.api.libs.json.{JsObject, JsString, Json} | |
| import play.api.mvc.{AbstractController, Action, AnyContent, ControllerComponents, Request, Result} | |
| import sangria.marshalling.playJson._ |