Last active
April 17, 2022 21:21
-
-
Save colinfwren/10dc19595eae70cb82e0d966cd09a14f to your computer and use it in GitHub Desktop.
Basic schema for Test Data objects
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 Product { | |
id: ID! @id | |
name: String | |
} | |
type Mockup { | |
id: ID! @id | |
name: String | |
nodeId: String | |
} | |
type UserStory { | |
id: ID! @id | |
name:String | |
} | |
type Test { | |
id: ID! @id | |
name: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment