Schema

trait Schema

Representation of a GraphQL schema

A Schema is a collection of type and directive declarations.

Companion
object
class Object
trait Matchable
class Any

Value members

Abstract methods

def directives: List[Directive]

The directives defined by this Schema.

The directives defined by this Schema.

def pos: SourcePos
def types: List[NamedType]

The types defined by this Schema.

The types defined by this Schema.

Concrete methods

The default type of a GraphQL schema

The default type of a GraphQL schema

Unless a type named "Schema" is explicitly defined as part of this Schema a definition of the form,

type Schema {
 query: Query!
 mutation: Mutation
 subscription: Subscription
}

is used.

def definition(name: String): Option[NamedType]

Look up by name a type defined in this Schema.

Look up by name a type defined in this Schema.

Yields the type, if defined, None otherwise.

def mutationType: Option[NamedType]

The type of mutations defined by this Schema

The type of mutations defined by this Schema

The type of queries defined by this Schema

The type of queries defined by this Schema

def ref(tpnme: String): TypeRef

A reference by name to a type defined by this Schema.

A reference by name to a type defined by this Schema.

TypeRefs refer to types defined in this schema by name and hence can be used as part of mutually recursive type definitions.

def ref(tp: Type): Option[TypeRef]

The schema type.

The schema type.

Either the explicitly defined type named "Schema" or the default schema type if not defined.

The type of subscriptions defined by this Schema

The type of subscriptions defined by this Schema

override def toString: String
Definition Classes
Any