module Bearcat class Client < Footrest::Client # Request body format should be: { query: "query string" }. More info in README.md module GraphQL def graphql_query(query) post('/api/graphql', query) end end end end