Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ val sourcePosVersion = "1.2.0"
val typenameVersion = "1.1.2"

val Scala2 = "2.13.18"
val Scala3 = "3.3.7"
val Scala3 = "3.3.8"

ThisBuild / scalaVersion := Scala2
ThisBuild / crossScalaVersions := Seq(Scala2, Scala3)
Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/compiler.scala
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ object QueryParser {
new Impl(parser)

private final class Impl(parser: GraphQLParser) extends QueryParser {
import Ast.{ Directive => _, Type => _, Value => _, _ }, OperationDefinition._, Selection._
import Ast.{ Directive => _, Value => _, _ }, OperationDefinition._, Selection._

/**
* Parse a String to query algebra operations and fragments.
Expand Down
Loading