[][src]Crate async_graphql_parser

A parser for GraphQL. Used in the async-graphql crate.

It uses the pest crate to parse the input and then transforms it into Rust types.

Modules

types

GraphQL types.

Structs

Error

Parser error.

Pos

Original position of an element in source code.

Positioned

An AST node that stores its original position.

Functions

parse_query

Parse a GraphQL query document.

parse_schema

Parse a GraphQL schema document.

Type Definitions

Result

An alias for Result<T, Error>.