Query


query GetHomePageOptions {
homeSetting {
homePage {
socialIcons {
iconType
iconNameurl
iconLink
},
heroSection {
profileImage {
node {
sourceUrl
}
}
heroHeading{
heading
}
contactButtonText
contactButtonUrl
}
aboutMe{
aboutMeDetails
skills{
skillName
skillRange
}
buttonText
buttonUrl
download
}
}
}
}


query HomePage {
home: homeSetting {
data: homePage {

socialIcons {
iconType
iconNameurl
iconLink
}

heroSection {
profileImage {
node {
sourceUrl
}
}
heading: heroHeading {
heading
}
buttonText: contactButtonText
buttonUrl: contactButtonUrl
}

aboutMe {
aboutMeDetails
skills {
skillName
skillRange
}
buttonText
buttonUrl
download
}
}
}
}