I'm making a blog with Gatsby front-end, Strapi back-end. I made a query in component with StaticQuery
query={graphql`
query {
allStrapiArticle {
edges {
node {
strapiId
title
category {
name
}
image {
url
}
}
}
}
}
`}
All of field is work fine without image{url}
. I got error: error Cannot query field "url" on type "File" graphql/template-strings
. How can I fix it? Thanks!