View Source Absinthe.Type.List (absinthe v1.7.10)
A wrapping type which declares the type of each item in the list.
Examples
Given a type, :item
, to declare the type of a field/argument as a list of
:item
-typed values, you could do:
type: %Absinthe.Type.List{of_type: :item}
But normally this would be done using Absinthe.Schema.Notation.list_of/1
.
type: list_of(:item)