Parser

object Parser
class Object
trait Matchable
class Any
Parser.type

Value members

Concrete methods

def check(query: String): Option[String]

Checks if the query is valid, if not returns an error string.

Checks if the query is valid, if not returns an error string.

def parseInputValue(rawValue: String): Either[ParsingError, InputValue]
def parseQuery(query: String): IO[ParsingError, Document]

Parses the given string into a caliban.parsing.adt.Document object or fails with a caliban.CalibanError.ParsingError.

Parses the given string into a caliban.parsing.adt.Document object or fails with a caliban.CalibanError.ParsingError.