|  |  
 |   |   
 NAMEGraphQL::Language::Parser - GraphQL Pegex parser SYNOPSIS  use GraphQL::Language::Parser qw(parse);
  my $parsed = parse(
    $source
  );
DESCRIPTIONProvides both an outside-accessible point of entry into the GraphQL parser (see above), and a subclass of Pegex::Parser to parse a document into an AST usable by GraphQL. METHODSparseparse($source, $noLocation); NB that unlike in "Pegex::Parser" this is a function, not an instance method. This achieves hiding of Pegex implementation details. format_errorOverride of parent method. Returns a GraphQL::Error. 
 
 |