Last active
June 18, 2020 15:08
-
-
Save fakedarren/e29e1cc9531dd76b096d733519b12551 to your computer and use it in GitHub Desktop.
This file contains 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 Product { | |
id: ID! | |
title: String | |
description: String | |
image: String | |
} | |
type Query { | |
product(id: ID!): Product | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment