All Downloads are FREE. Search and download functionalities are using the official Maven repository.

caliban.schema.Operation.scala Maven / Gradle / Ivy

The newest version!
package caliban.schema

import caliban.introspection.adt.__Type

case class Operation[-R](opType: __Type, plan: Step[R]) {
  def |+|[R1 <: R](that: Operation[R1]): Operation[R1] =
    Operation(opType |+| that.opType, Step.mergeRootSteps(plan, that.plan))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy