I am using gatsby
with gatsby-source-strapi
.
The following graphql
request returns the publicURL
of a Post
.
allStrapiPost {
nodes {
image {
publicURL
}
}
}
This url looks like /static/ad7b2564f1eb5bdf96cb081b3b23967c-eeead0eb0feaed6e8ae436e3a38ad5.jpg
which is quite a bad url.
Is there any chance to modify this url f.e. in onCreateNode?