graphqexl v0.1.0-alpha-rc.22 Graphqexl.Schema.Type

GraphQL type

Link to this section Summary

Functions

Lists the fields available on the given Graphqexl.Schema.Type.t/0.

Checks whether the given field is a custom scalar type.

Link to this section Types

Link to this type

t()

t() :: %Graphqexl.Schema.Type{
  deprecated: boolean(),
  deprecation_reason: String.t(),
  description: String.t(),
  fields: Map.t(),
  implements: Graphqexl.Schema.Ref.t() | nil,
  name: String.t()
}

Link to this section Functions

Lists the fields available on the given Graphqexl.Schema.Type.t/0.

Returns: [t:Graphqexl.Schema.Field.t/0]

Link to this function

is_custom_scalar?(type, field)

(since 0.1.0)
is_custom_scalar?(Graphqexl.Schema.Type.t(), atom()) :: boolean()

Checks whether the given field is a custom scalar type.

Returns: t:boolean