We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gqlPostOrThrow
1 parent c7224ae commit a2a93beCopy full SHA for a2a93be
src/client.ts
@@ -72,8 +72,8 @@ class Client {
72
}
73
74
async gqlPostOrThrow<U, V>(payload: GraphQLRequest<U>): Promise<V> {
75
- const token = process.env.FLY_API_TOKEN
76
- const resp = await crossFetch(`${FLY_API_GRAPHQL}/graphql`, {
+ const token = this.apiKey
+ const resp = await crossFetch(`${this.graphqlUrl}/graphql`, {
77
method: 'POST',
78
headers: {
79
Authorization: `Bearer ${token}`,
0 commit comments