Skip to content

Instantly share code, notes, and snippets.

@fakedarren
Last active June 18, 2020 15:08
Show Gist options
  • Save fakedarren/dbf66cfbff5aacdc4c27bb2296265397 to your computer and use it in GitHub Desktop.
Save fakedarren/dbf66cfbff5aacdc4c27bb2296265397 to your computer and use it in GitHub Desktop.
type Category {
id: ID!
name: String!
parentID: ID
children: [Category]
products: [Product]
}
type Product {
id: ID!
title: String
description: String
image: String
}
type Query {
categories: [Category]
product(id: ID!): Product
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment