class GraphQL::Execution::Lookahead::NullLookahead

This is returned for {Lookahead#selection} when a non-existent field is passed

def initialize

No inputs required here.
def initialize
end

def inspect

def inspect
  "#<GraphQL::Execution::Lookahead::NullLookahead>"
end

def selected?

def selected?
  false
end

def selection(*)

def selection(*)
  NULL_LOOKAHEAD
end

def selections(*)

def selections(*)
  []
end

def selects?(*)

def selects?(*)
  false
end