class GraphQL::Schema::List

@see {Schema::Member::TypeSystemHelpers#to_list_type}
Wraps a {Schema::Member} as a list type.
Represents a list type in the schema.

def kind

Returns:
  • (GraphQL::TypeKinds::LIST) -
def kind
  GraphQL::TypeKinds::LIST
end

def list?

Returns:
  • (true) -
def list?
  true
end

def to_graphql

def to_graphql
  @of_type.graphql_definition.to_list_type
end

def to_type_signature

def to_type_signature
  "[#{@of_type.to_type_signature}]"
end