cynic-parser 0.11.1

A fast, correct and easy to use GraphQL parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// These are generated by LARLPOP
#[allow(unused_braces)]
mod executable;
#[allow(unused_braces)]
mod schema;

pub use executable::*;
pub use schema::*;

use crate::{common::MalformedStringError, lexer::LexicalError};

pub enum AdditionalErrors {
    Lexical(LexicalError),
    MalformedString(MalformedStringError),
    MalformedDirectiveLocation(usize, String, usize),
    VariableInConstPosition(usize, String, usize),
}