yarn strapi install graphql
//then after install go to http://localhost:1337/graphql
yarn add @strapi/plugin-graphql
//check at plugin list graphql added in plugin
then from baseUrl enter /graphql which will open graphql interface
# Write your query or mutation here
query{
products{
data{
attributes{
title
price
image {
data{
attributes{
name
width
}
}
}
}
}
}
}