Skip to content

Commit 32e3482

Browse files
committed
Fix broken graphql function call
I didn't test it, but I think this has probably been broken since 0.5.0 and this commit should fix it.
1 parent 6ef105f commit 32e3482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/_core/MiniGraphiQL.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ module.exports = class MiniGraphiQL extends React.Component {
5555
var queryID = this._editorQueryID;
5656

5757
graphql(
58-
this.state.schema, this.state.query, null, this.state.values
58+
this.state.schema, this.state.query, null, null, this.state.values
5959
).then(result => {
6060
if (result.errors) {
6161
result.errors = result.errors.map(formatError);

0 commit comments

Comments
 (0)