Why am I getting a cache error in my script tag code?

I am currently getting an error when I add cache: true. Without the cache, it is working.

I get this error

Here is my code

import gql from "graphql-tag";
import { useQuery, useMutation} from "react-apollo";
import { Button} from "@shopify/polaris";
import React from "react";

const CREATE_SCRIPT_TAG = gql`
  mutation scriptTagCreate($input: ScriptTagInput!){
    scriptTagCreate(input: $input){
      scriptTag{
        id
      }
      userErrors{
        field
        message
      }
    }
  }

`

function Index() {
  const [createScripts] = useMutation(CREATE_SCRIPT_TAG)

  return(
            

         
               

  )
}

export default Index;

It was the shopify API version. Was using last years version… Changed it to

API_VERSION: ApiVersion.April21