o

edu.gemini.grackle

QueryParser

object QueryParser

GraphQL query parser

Source
compiler.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryParser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. def parseArg(name: Name, value: Ast.Value): Result[Binding]

    Parse an argument AST to a query algebra binding.

    Parse an argument AST to a query algebra binding.

    GraphQL errors and warnings are accumulated in the result.

  16. def parseArgs(args: List[(Name, Ast.Value)]): Result[List[Binding]]

    Parse argument ASTs to query algebra bindings.

    Parse argument ASTs to query algebra bindings.

    GraphQL errors and warnings are accumulated in the result.

  17. def parseDirectives(directives: List[Ast.Directive]): Result[List[Directive]]

    Parse directive ASTs to query algebra directives.

    Parse directive ASTs to query algebra directives.

    GraphQL errors and warnings are accumulated in the result.

  18. def parseDocument(doc: Document): Result[(List[UntypedOperation], List[UntypedFragment])]

    Parse a document AST to query algebra operations and fragments.

    Parse a document AST to query algebra operations and fragments.

    GraphQL errors and warnings are accumulated in the result.

  19. def parseOperation(op: Ast.OperationDefinition.Operation): Result[UntypedOperation]

    Parse an operation AST to a query algebra operation.

    Parse an operation AST to a query algebra operation.

    GraphQL errors and warnings are accumulated in the result.

  20. def parseQueryShorthand(qs: QueryShorthand): Result[UntypedOperation]

    Parse a query shorthand AST to query algebra operation.

    Parse a query shorthand AST to query algebra operation.

    GraphQL errors and warnings are accumulated in the result.

  21. def parseSelection(sel: Selection): Result[Query]

    Parse a selection AST to a query algebra term.

    Parse a selection AST to a query algebra term.

    GraphQL errors and warnings are accumulated in the result.

  22. def parseSelections(sels: List[Selection]): Result[Query]

    Parse selection ASTs to query algebra terms.

    Parse selection ASTs to query algebra terms.

    GraphQL errors and warnings are accumulated in the result

  23. def parseText(text: String): Result[(List[UntypedOperation], List[UntypedFragment])]

    Parse a String to query algebra operations and fragments.

    Parse a String to query algebra operations and fragments.

    GraphQL errors and warnings are accumulated in the result.

  24. def parseVariableDefinitions(vds: List[VariableDefinition]): Result[List[UntypedVarDef]]

    Parse variable definition ASTs to query algebra variable definitions.

    Parse variable definition ASTs to query algebra variable definitions.

    GraphQL errors and warnings are accumulated in the result.

  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped