diff --git a/.changeset/six-pumas-guess.md b/.changeset/six-pumas-guess.md new file mode 100644 index 0000000..224ea14 --- /dev/null +++ b/.changeset/six-pumas-guess.md @@ -0,0 +1,5 @@ +--- +"@everipedia/iq-utils": patch +--- + +Update GraphQL API baseURL to api.iq.wiki diff --git a/src/lib/wiki-helpers.ts b/src/lib/wiki-helpers.ts index 769fd65..b4d1b58 100644 --- a/src/lib/wiki-helpers.ts +++ b/src/lib/wiki-helpers.ts @@ -183,7 +183,7 @@ const cache = new QuickLRU({ }); export const api = axios.create({ - baseURL: "https://graph.everipedia.org/graphql", + baseURL: "https://api.iq.wiki/graphql", headers: { "Content-Type": "application/json", },