Method: GraphQL::Schema::Subscription#subscribe

Defined in:
lib/graphql/schema/subscription.rb

#subscribe(args = {}) ⇒ Object

The default implementation returns nothing on subscribe. Override it to return an object or :no_response to (explicitly) return nothing.



79
80
81
# File 'lib/graphql/schema/subscription.rb', line 79

def subscribe(args = {})
  :no_response
end