View Source argo_graphql_language_operation_definition (argo v1.0.4)

Summary

Types

-type context() ::
    #{operation := argo_graphql_language_root_operation_type_definition:operation_type(),
      selection_set := argo_graphql_language_selection_set:t(),
      name => argo_types:name(),
      variables_definition => argo_graphql_language_variables_definition:t(),
      directives => argo_graphql_language_directives:t(),
      shorthand => boolean()}.
-type t() ::
    #argo_graphql_language_operation_definition{location :: erl_anno:location(),
                                                operation ::
                                                    argo_graphql_language_root_operation_type_definition:operation_type(),
                                                name :: none | {some, argo_types:name()},
                                                variables_definition ::
                                                    none |
                                                    {some,
                                                     argo_graphql_language_variables_definition:t()},
                                                directives ::
                                                    none |
                                                    {some, argo_graphql_language_directives:t()},
                                                selection_set ::
                                                    argo_graphql_language_selection_set:t(),
                                                shorthand :: boolean()}.

Functions

Link to this function

format(Formatter1, Type)

View Source
-spec format(Formatter1, Type :: t()) -> Formatter2
          when Formatter1 :: argo_graphql_formatter:t(), Formatter2 :: argo_graphql_formatter:t().
Link to this function

is_shorthand(Definition)

View Source
-spec is_shorthand(Definition) -> boolean() when Definition :: t().
Link to this function

parse(Context, Location)

View Source
-spec parse(Context, Location) -> OperationDefinition
         when Context :: context(), Location :: erl_anno:location(), OperationDefinition :: t().