...

Source file src/github.com/udacity/graphb/operation_type.go

Documentation: github.com/udacity/graphb

     1  package graphb
     2  
     3  type operationType string
     4  
     5  // 3 types of operation.
     6  const (
     7  	TypeQuery        operationType = "query"
     8  	TypeMutation     operationType = "mutation"
     9  	TypeSubscription operationType = "subscription"
    10  )
    11  

View as plain text