module.exports = `
	scalar GUID
	scalar DateTime

	type Plan {
		planId: GUID!
		name: String!
		monthlyPlanAmount: Int!
		yearlyPlanAmount: Int
		createdAt: DateTime!
		updatedAt: DateTime!
	}
`;