Skip to content

Commit

Permalink
add additional benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacovCR committed Dec 27, 2022
1 parent 1bf71ee commit 4c25a0e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions benchmark/list-async-nested-benchmark.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import { execute } from 'graphql/execution/execute.js';
import { parse } from 'graphql/language/parser.js';
import { buildSchema } from 'graphql/utilities/buildASTSchema.js';

const schema = buildSchema(`
type Query {
listField: [Object]
}
type Object {
field: String
}
`);
const document = parse('{ listField { field } }');

function listField() {
const results = [];
for (let index = 0; index < 1; index++) {
results.push(Promise.resolve({ field: Promise.resolve(index) }));
}
return results;
}

export const benchmark = {
name: 'Execute Asynchronous List Field with Nested Asynchronous Fields',
count: 10,
async measure() {
await execute({
schema,
document,
rootValue: { listField },
});
},
};

0 comments on commit 4c25a0e

Please sign in to comment.