-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(gatsby-recipes): Implement utility for turning graphql sdl to fields #24506
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚢
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you fix CI?
ce79430
to
581fb8a
Compare
These changes shouldn't be affecting CI, it appears unrelated.
…elds This will be used for CMS providers so that we can provision content types # Hello, world! --- export const blogPostSchema = ` type BlogPost { title: String! body: String! @metadata(type: "Text", title: "Content") } ` Provision content types for the blog post: <ContentfulSpace name="blog"> <ContentfulEnvironment name="production"> <ContentfulType schema={blogPostSchema} /> </ContentfulEnvironment> <ContentfulEnvironment name="staging"> <ContentfulType schema={blogPostSchema} /> </ContentfulEnvironment> </ContentfulSpace>
581fb8a
to
c8dff03
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking great! All hail John! Master of the Meta!
…elds (gatsbyjs#24506) This will be used for CMS providers so that we can provision content types # Hello, world! --- export const blogPostSchema = ` type BlogPost { title: String! body: String! @metadata(type: "Text", title: "Content") } ` Provision content types for the blog post: <ContentfulSpace name="blog"> <ContentfulEnvironment name="production"> <ContentfulType schema={blogPostSchema} /> </ContentfulEnvironment> <ContentfulEnvironment name="staging"> <ContentfulType schema={blogPostSchema} /> </ContentfulEnvironment> </ContentfulSpace>
…elds (#24506) This will be used for CMS providers so that we can provision content types # Hello, world! --- export const blogPostSchema = ` type BlogPost { title: String! body: String! @metadata(type: "Text", title: "Content") } ` Provision content types for the blog post: <ContentfulSpace name="blog"> <ContentfulEnvironment name="production"> <ContentfulType schema={blogPostSchema} /> </ContentfulEnvironment> <ContentfulEnvironment name="staging"> <ContentfulType schema={blogPostSchema} /> </ContentfulEnvironment> </ContentfulSpace>
This will be used for CMS providers so that we can provision content types: