appwrite/tests/benchmarks/graphql/account/graphql-selection-set.js

16 lines
395 B
JavaScript
Raw Normal View History

2022-07-14 01:47:32 +00:00
import http from 'k6/http';
export const options = {
vus: 20,
duration: '60s',
};
export default function () {
http.post('http://localhost/v1/graphql', JSON.stringify({
2022-07-19 13:30:01 +00:00
query: `query { accountGet { _id email } }`
2022-07-14 01:47:32 +00:00
}), {
headers: {
'Content-Type': 'application/json',
'X-Appwrite-Project': 'test',
2022-07-19 13:30:01 +00:00
'Cookie': ''
2022-07-14 01:47:32 +00:00
}
})
}