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