p

edu.gemini

grackle

package grackle

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract class ComposedMapping[F[_]] extends Mapping[F]
  2. trait Cursor extends AnyRef

    Indicates a position within an abstract data model during the interpretation of a GraphQL query.

  3. case class Directive(name: String, description: Option[String], locations: List[DirectiveLocation], args: List[InputValue]) extends Product with Serializable

    The Directive type represents a Directive that a server supports.

    The Directive type represents a Directive that a server supports.

    See also

    https://facebook.github.io/graphql/draft/#sec-The-Directive-Type

  4. case class EnumType(name: String, description: Option[String], enumValues: List[EnumValue]) extends Type with NamedType with Product with Serializable

    Enums are special scalars that can only have a defined set of values.

    Enums are special scalars that can only have a defined set of values.

    See also

    https://facebook.github.io/graphql/draft/#sec-Enum

  5. case class EnumValue(name: String, description: Option[String], isDeprecated: Boolean = false, deprecationReason: Option[String] = None) extends Product with Serializable

    The EnumValue type represents one of possible values of an enum.

    The EnumValue type represents one of possible values of an enum.

    See also

    https://facebook.github.io/graphql/draft/#sec-The-EnumValue-Type

  6. case class Field(name: String, description: Option[String], args: List[InputValue], tpe: Type, isDeprecated: Boolean, deprecationReason: Option[String]) extends Product with Serializable

    The Field type represents each field in an Object or Interface type.

    The Field type represents each field in an Object or Interface type.

    See also

    https://facebook.github.io/graphql/draft/#sec-The-Field-Type

  7. case class InputObjectType(name: String, description: Option[String], inputFields: List[InputValue]) extends Type with NamedType with Product with Serializable

    Input objects are composite types used as inputs into queries defined as a list of named input values.

    Input objects are composite types used as inputs into queries defined as a list of named input values.

    See also

    https://facebook.github.io/graphql/draft/#sec-Input-Object

  8. case class InputValue(name: String, description: Option[String], tpe: Type, defaultValue: Option[Value]) extends Product with Serializable

    defaultValue

    a String encoding (using the GraphQL language) of the default value used by this input value in the condition a value is not provided at runtime.

  9. case class InterfaceType(name: String, description: Option[String], fields: List[Field], interfaces: List[NamedType]) extends Type with TypeWithFields with Product with Serializable

    Interfaces are an abstract type where there are common fields declared.

    Interfaces are an abstract type where there are common fields declared. Any type that implements an interface must define all the fields with names and types exactly matching.

    See also

    https://facebook.github.io/graphql/draft/#sec-Interface

  10. case class ListType(ofType: Type) extends Type with Product with Serializable

    Lists represent sequences of values in GraphQL.

    Lists represent sequences of values in GraphQL. A List type is a type modifier: it wraps another type instance in the ofType field, which defines the type of each item in the list.

    See also

    https://facebook.github.io/graphql/draft/#sec-Type-Kinds.List

  11. abstract class Mapping[F[_]] extends QueryExecutor[F, Json]
  12. trait MappingValidator extends AnyRef
  13. sealed trait NamedType extends Type

    A type with a schema-defined name.

    A type with a schema-defined name.

    This includes object types, inferface types and enums.

  14. case class NullableType(ofType: Type) extends Type with Product with Serializable

    A Non‐null type is a type modifier: it wraps another type instance in the ofType field.

    A Non‐null type is a type modifier: it wraps another type instance in the ofType field. Non‐null types do not allow null as a response, and indicate required inputs for arguments and input object fields.

    See also

    https://facebook.github.io/graphql/draft/#sec-Type-Kinds.Non-Null

  15. case class ObjectType(name: String, description: Option[String], fields: List[Field], interfaces: List[NamedType]) extends Type with TypeWithFields with Product with Serializable

    Object types represent concrete instantiations of sets of fields.

    Object types represent concrete instantiations of sets of fields.

    See also

    https://facebook.github.io/graphql/draft/#sec-Object

  16. case class Operation(query: Query, rootTpe: NamedType) extends Product with Serializable
  17. case class Path(rootTpe: Type, path: List[String] = Nil) extends Product with Serializable

    A path starting from some root type.

  18. sealed trait PathTerm extends AnyRef
  19. trait Predicate extends Term[Boolean]
  20. final case class Problem(message: String, locations: List[(Int, Int)] = Nil, path: List[String] = Nil, extension: Option[JsonObject] = None) extends Product with Serializable

    A problem, to be reported back to the user.

  21. sealed trait Query extends AnyRef

    GraphQL query Algebra

  22. class QueryCompiler extends AnyRef

    GraphQL query compiler.

    GraphQL query compiler.

    A QueryCompiler parses GraphQL queries to query algebra terms, then applies a collection of transformation phases in sequence, yielding a query algebra term which can be directly interpreted.

  23. trait QueryExecutor[F[_], T] extends AnyRef
  24. class QueryInterpreter[F[_]] extends AnyRef
  25. sealed trait Result[+T] extends AnyRef

    A result value.

    A result value.

    A result of type T, a non-empty collection of errors encoded as Json, or both.

  26. trait ResultInstances extends ResultInstances0
  27. trait ResultInstances0 extends AnyRef
  28. final case class ResultT[F[_], A](value: F[Result[A]]) extends Product with Serializable
  29. case class ScalarType(name: String, description: Option[String]) extends Type with NamedType with Product with Serializable

    Represents scalar types such as Int, String, and Boolean.

    Represents scalar types such as Int, String, and Boolean. Scalars cannot have fields.

    See also

    https://facebook.github.io/graphql/draft/#sec-Scalar

  30. trait Schema extends AnyRef

    Representation of a GraphQL schema

    Representation of a GraphQL schema

    A Schema is a collection of type and directive declarations.

  31. final class StringContextOps extends AnyVal
  32. trait Term[T] extends Product with Serializable

    A reified function over a Cursor.

    A reified function over a Cursor.

    Query interpreters will typically need to introspect predicates (eg. in the doobie module we need to be able to construct where clauses from predicates over fields/attributes), so these cannot be arbitrary functions Cursor => Boolean.

  33. trait TermLow extends AnyRef
  34. sealed trait Type extends Product

    A GraphQL type definition.

  35. case class TypeRef(schema: Schema, name: String) extends NamedType with Product with Serializable

    A by name reference to a type defined in schema.

  36. sealed trait TypeWithFields extends NamedType

    A type with fields.

    A type with fields.

    This includes object types and inferface types.

  37. case class UnionType(name: String, description: Option[String], members: List[NamedType]) extends Type with NamedType with Product with Serializable

    Unions are an abstract type where no common fields are declared.

    Unions are an abstract type where no common fields are declared. The possible types of a union are explicitly listed out in elements. Types can be made parts of unions without modification of that type.

    See also

    https://facebook.github.io/graphql/draft/#sec-Union

  38. sealed trait UntypedOperation extends AnyRef
  39. sealed trait Value extends AnyRef
  40. abstract class ValueMapping[F[_]] extends Mapping[F] with ValueMappingLike[F]
  41. trait ValueMappingLike[F[_]] extends Mapping[F]
  42. trait VersionSpecificSyntax extends AnyRef

Value Members

  1. object Ast
  2. object CommentedText
  3. object Cursor
  4. object DocumentLiteral extends Literally[Document]
  5. object GraphQLParser
  6. object Introspection
  7. object JsonExtractor
  8. object Literals
  9. object MappingValidator
  10. object Path extends Serializable
  11. object PathTerm
  12. object Predicate extends Serializable
  13. object Problem extends Serializable
  14. object Query
  15. object QueryCompiler
  16. object QueryInterpreter
  17. object QueryMinimizer
  18. object QueryParser

    GraphQL query parser

  19. object Result extends ResultInstances
  20. object ResultT extends Serializable
  21. object ScalarType extends Serializable
  22. object Schema
  23. object SchemaLiteral extends Literally[Schema]
  24. object SchemaParser

    GraphQL schema parser

  25. object SchemaRenderer
  26. object SchemaValidator
  27. object Term extends TermLow with Serializable
  28. object UntypedOperation
  29. object Value
  30. object syntax extends VersionSpecificSyntax

Ungrouped