Last active
January 27, 2022 04:12
-
-
Save ndreckshage/4269aba8655a0efaacbfea5817afb296 to your computer and use it in GitHub Desktop.
BuzzwordBooklist Snippets
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 LayoutComponent { | |
id: ID! | |
title: String! | |
createdBy: String! | |
flexDirection: String! | |
container: Boolean! | |
components: [Component!]! | |
} | |
union Component = | |
LayoutComponent | |
| BookImageComponent | |
| BookTitleComponent | |
| BookActionComponent | |
| BookAuthorsComponent | |
| BookCategoriesComponent | |
| BookDetailsComponent | |
| CarouselComponent | |
| GridComponent | |
| ListComponent | |
| MarkdownComponent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment