diff --git a/src/Delegate.ts b/src/Delegate.ts index 8fc17f1d..920739f5 100644 --- a/src/Delegate.ts +++ b/src/Delegate.ts @@ -40,7 +40,7 @@ export class Delegate { ): Promise { this.before() return graphql(this.schema, query, null, null, variables).then( - r => r.data as any, + r => r as any, ) }