I keep getting a TS 2305 error while importing gpl from @apollo/client

So I’m working on some queries and I’m creating it with the gpl tool from @apollo/client, I got one working but when I created a new one in another file I keep getting the following error: Module ‘“@apollo/client”’ has no exported member ‘gpl’.ts(2305)

Here’s how I’m doing my imports:

import React from ‘react’;
import {
useQuery,
gpl,
} from ‘@apollo/client’;
// Other imports

Is there something wrong maybe with my configs? Or maybe my IDE? This is very frustrating :c

I tried deleting node_modules, clean yarn cache and deleting yarn.lock and then yarn install and that didn’t solve the issue :confused:

Nvm, I just saw the typo… sorry guys.