Skip to content

Instantly share code, notes, and snippets.

@ndreckshage
Last active January 27, 2022 04:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ndreckshage/4269aba8655a0efaacbfea5817afb296 to your computer and use it in GitHub Desktop.
Save ndreckshage/4269aba8655a0efaacbfea5817afb296 to your computer and use it in GitHub Desktop.
BuzzwordBooklist Snippets
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