Skip to content

Instantly share code, notes, and snippets.

@sonufrienko
Last active July 19, 2022 04:52
Show Gist options
  • Save sonufrienko/4354a67b59987086c95bd252d5580a66 to your computer and use it in GitHub Desktop.
Save sonufrienko/4354a67b59987086c95bd252d5580a66 to your computer and use it in GitHub Desktop.
Graphql API Load Testing

Basic use

wrk -c <user-count> -t <cpu-core-count> -d 10 --latency https://your-server/endpoint

GraphQL API

wrk -s script.lua https://your-server/api/graphql
wrk.method = "POST"
wrk.headers["Content-Type"] = "application/json"
wrk.headers["Accept"] = "application/json"
query = [[
query books($ids: [Integer]) {
books(ids: $ids) {
id
name
price
}
}
}
]]
variables = [[
"ids": [1,2,3,4]
]]
wrk.body ='{"query": "' .. string.gsub(query, '\n', '') .. '", "variables": {' .. string.gsub(variables, '\n', '') .. '} }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment