Last active
June 18, 2020 15:08
-
-
Save fakedarren/dbf66cfbff5aacdc4c27bb2296265397 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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