class Fbe::Graph::HTTP

The HTTP class

def headers(_context)

def headers(_context)
  { Authorization: "Bearer #{@token}" }
end

def initialize(token, host)

def initialize(token, host)
  @token = token
  super("https://#{host}/graphql")
end