March 2018
Intermediate to advanced
304 pages
6h 59m
English
GraphQL objects represent a list of named fields, each of which yields a value of a specific type.
Note that object types cannot be used for input (instead, see “InputObject” below).
object
In an Absinthe schema:
| | @desc "A person" |
| | object :person do |
| | field :name, non_null(:string) |
| | # Other fields |
| | end |
Read now
Unlock full access