Yson.GraphQL.Schema.query

You're seeing just the macro query, go back to Yson.GraphQL.Schema module for more information.
Link to this macro

query(name, opts \\ [], list)

View Source (macro)

Defines a GraphQL query.

It specifies the query name and its arguments. It has to be defined exactly once, and it is mutually exclusive with mutation/3.

Examples

query :person do
  arg(:street, :string)
end