Dynamic Zone in Gatsby (graphql) not working

Hi,

I am using the strapi template blog and I am trying to find elements from the dynamic zone.

I expect something like this:

query MyQuery {
  allStrapiApiArticles {
    edges {
      node {
        data {
          attributes {
            title
            blocks{
		Quote
            }
          }
        }
      }
    }
  }
}

How to achieve something like this?