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

caliban.federation.v2x.FederationDirectivesV2.scala Maven / Gradle / Ivy

The newest version!
package caliban.federation.v2x

import caliban.Value.StringValue
import caliban.parsing.adt.Directive
import caliban.schema.Annotations.GQLDirective

trait FederationDirectivesV2 {
  case class GQLShareable() extends GQLDirective(Shareable)

  val Shareable = Directive("shareable")

  case class GQLInaccessible() extends GQLDirective(Inaccessible)

  val Inaccessible = Directive("inaccessible")

  case class GQLOverride(from: String) extends GQLDirective(Override(from))

  object Override {
    def apply(from: String): Directive =
      Directive("override", Map("from" -> StringValue(from)))
  }

  case class GQLTag(name: String) extends GQLDirective(Tag(name))

  object Tag {
    def apply(name: String): Directive =
      Directive("tag", Map("name" -> StringValue(name)))
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy