See this in action
Want to see how to implement this? The Hygraph Getting Started guide will walk you through the process of setting up a Hygraph project and implementing this example.
A collection of fake product information to import into Hygraph remote sources.
GET /api/products
type Product { id: Int name: String price: Int description: String image: String category: String rating: Float numReviews: Int countInStock: Int}
type Products { data: [Product]}
GET /api/product/:id
See this in action
Want to see how to implement this? The Hygraph Getting Started guide will walk you through the process of setting up a Hygraph project and implementing this example.