This module helps you get started with GraphQL by automatically generating fragments, which can be optionally exposed in the schema's info query. These generated fragments serve as a guide for building your application.
Automatically create fragments
This module can help you quickly get up and running with GraphQL by auto-generating fragments. These fragments are intended as a guide, not a solution. Use them to quickly get started building your application.
Expose fragments to the schema
Optionally you can enable fragments on the schema, which will be added to the info query.
query {
info {
fragments {
type
name
class
content
}
}
}