Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit 0304731

Browse files
authored
fix hm api url (#100)
1 parent ee62f2f commit 0304731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/graphql.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { getSlugFromName } from "./index.js";
88
import chalk from "chalk";
99

1010
export async function sendGraphQLReqToHypermode(apiKey: string, query: string): Promise<any> {
11-
const url = "http://localhost:9081/graphql";
11+
const url = "https://api.hypermode.com/graphql";
1212

1313
const options = {
1414
body: JSON.stringify({ query }),

0 commit comments

Comments
 (0)