I am using Gatsby with WordPress, and the native page permalinks/slugs are not carrying over to graphql properly after modifying them. (ie. old one are still cached)
I have this query that where I need to access not the outer slug but "slug inside of acf". How do I do this in graphql?
Here is my example query:
query getPage($slug: String!) {
wordpressPage(slug : {eq: $slug}) {
slug
acf {
title
slug
floorsizeunit
}
the outer nested slug is the old "bad value slug" I am currently filtering for but the slug I need to use inside wordPressPage is "acf.slug" or the slug inside acf. How can I access this value with graphql