Hi, I want to get all data from builder.io to my Gatsby project through Graphql.
I am running following query
this blog field have reference to other models (i am only getting their schema not values)
(i.e. relatedCollection, contributor)
And getting result is:
I want to run query like this :
query LandingPageData {
ContentfulData: contentfulLandingPage {
blog {
title
overview
contributor{
name
}
}
}
}
}