Query to get schools by an schoolId
query {
school(schoolId: Int{
# School
}
}
offeringSearchForCourseOfferingsQuery.gql
query getFullDataOfSchool($schoolId: Int!){
school(schoolId: $schoolId){
schoolId
schoolCompanyId
schoolCompany{
name
phone
address
}
photo{
url
}
email
website
address
instituteNumber
googlePlaceId
country{
code
continent
nameTranslation
}
includeAutoHolidays
schoolBannerFile{
url
}
schoolAmenities{
amenityType{
codeName
}
}
schoolHighlights{
highlight
language{
code
}
}
}
}
Variables
{
"schoolId": 1
}