Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make runQuery accept a DocumentNode #24

Merged
merged 3 commits into from
May 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/api/cow-subgraph/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import log from 'loglevel'
import fetch from 'cross-fetch'
import { GraphQLClient, Variables } from 'graphql-request'
import { DocumentNode } from 'graphql'
import { CowError } from '../../utils/common'
import { Context } from '../../utils/context'
import { SupportedChainId as ChainId } from '../../constants/chains'
Expand Down Expand Up @@ -56,7 +57,7 @@ export class CowSubgraphApi {
return this.runQuery<LastHoursVolumeQuery>(LAST_HOURS_VOLUME_QUERY, { hours })
}

async runQuery<T>(query: string, variables?: Variables): Promise<T> {
async runQuery<T>(query: string | DocumentNode, variables?: Variables): Promise<T> {
try {
const chainId = await this.context.chainId
const client = this.clients[chainId]
Expand Down