-- This is the default lua script that is used when -- a script is not specified by the user. -- This expects that the url specified confirms to -- the graphql url POST spec. local gqbench = require "bench-lib-wrk2" local req_body = "" local results_dir = nil function init(args) req_body, results_dir, auth_header_key, auth_header_value = gqbench.init(args) end function request() return gqbench.request(wrk, req_body, auth_header_key, auth_header_value) end function done(s, l, r) return gqbench.done(s, l, r, results_dir) end