App reviews, troubleshooting, and recommendations
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(
<Button
primary
size="slim"
type="submit" onClick={()=>{
createScripts({
variables: {
input: {
cache: true,
src: "https://3b1087910eb7.ngrok.io/thanks-script.js",
displayScope: "ORDER_STATUS"
},
},
refetchQueries: [{query: QUERY_SCRIPTTAGS}]
})
}}>
Create Code
</Button>
)
}
export default Index;
Solved! Go to the solution
This is an accepted solution.
It was the shopify API version. Was using last years version... Changed it to
This is an accepted solution.
It was the shopify API version. Was using last years version... Changed it to
We recently spoke with Zopi developers @Zopi about how dropshipping businesses can enha...
By JasonH Oct 23, 2024A big shout out to all of the merchants who participated in our AMA with 2H Media: Holi...
By Jacqui Oct 21, 2024We want to take a moment to celebrate the incredible ways you all engage with the Shopi...
By JasonH Oct 15, 2024