Skip to content

Commit

Permalink
Merge pull request #204 from ValdemarGr/60-manual-types
Browse files Browse the repository at this point in the history
reordered presedence of types
  • Loading branch information
ValdemarGr authored Oct 22, 2023
2 parents f5421f4 + c2429fe commit ae78270
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/gql/SchemaShape.scala
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ object SchemaShape {
}
}

val outs = root.query :: root.mutation.toList ++ root.subscription.toList ++ root.outputTypes
val outs = root.outputTypes ++ List(root.query) ++ root.mutation.toList ++ root.subscription.toList

val outsF = outs.parFoldMapA(goOutput)

Expand Down
3 changes: 2 additions & 1 deletion project/metals.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

// This file enables sbt-bloop to create bloop config files.

addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.8")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.11")

0 comments on commit ae78270

Please sign in to comment.