Skip to content

Commit dc240e1

Browse files
authored
Merge pull request #2400 from OmarHG098/revamp/prices-component
Revamp prices component
2 parents f5c0996 + 99074b8 commit dc240e1

17 files changed

+1111
-737
lines changed

gatsby-node.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,34 @@ exports.createSchemaCustomization = ({ actions }) => {
748748
redirects: [String]
749749
related_clusters: [String]
750750
}
751+
type PlansYamlFull_time implements Node {
752+
recomended: String
753+
recommended_color: String
754+
scholarship: String
755+
payment_time: String
756+
price: String
757+
original_price: String
758+
warning_message: String
759+
offer: String
760+
bullets: [String]
761+
icons: [String]
762+
academies: [String]
763+
slug: String
764+
}
765+
type PlansYamlPart_time implements Node {
766+
recomended: String
767+
recommended_color: String
768+
scholarship: String
769+
payment_time: String
770+
price: String
771+
original_price: String
772+
warning_message: String
773+
offer: String
774+
bullets: [String]
775+
icons: [String]
776+
academies: [String]
777+
slug: String
778+
}
751779
`;
752780
createTypes(typeDefs);
753781
};

0 commit comments

Comments
 (0)