fix(): Query Missing bindings (#9131)
This commit is contained in:
committed by
GitHub
parent
c97ea9546d
commit
03d6b64a20
@@ -174,8 +174,8 @@ export function createQuery(remoteQuery: RemoteQuery): RemoteQueryFunction {
|
||||
return query.query.apply(query, args)
|
||||
}
|
||||
|
||||
backwardCompatibleQuery.graph = query.graph
|
||||
backwardCompatibleQuery.gql = query.gql
|
||||
backwardCompatibleQuery.graph = query.graph.bind(query)
|
||||
backwardCompatibleQuery.gql = query.gql.bind(query)
|
||||
|
||||
return backwardCompatibleQuery
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user