build: update typed-graphqlify to version 3.1.1 (#41738)

Use latest version of typed-graphqlify

PR Close #41738
This commit is contained in:
Alan Agius
2021-04-21 14:23:57 +02:00
committed by Jessica Janiuk
parent e00a9c1b99
commit 8bfd9e886b
6 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ export class GithubClient extends Octokit {
'Cannot query via graphql without an authentication token set, use the authenticated ' +
'`GitClient` by calling `GitClient.getAuthenticatedInstance()`.');
}
return (await this._graphql(query(queryObject), params)) as T;
return (await this._graphql(query(queryObject).toString(), params)) as T;
}
/** Retrieve the login of the current user from Github. */