reactive_graph/server/graphql_schema/
commands.rs

1use clap::Subcommand;
2
3#[derive(Subcommand, Debug)]
4pub enum GraphqlSchemaCommands {
5    /// Prints the GraphQL schema of the reactive graph.
6    ReactiveGraphSchema,
7    /// Prints the GraphQL schema of the dynamic graph.
8    DynamicGraphSchema,
9    /// Prints the GraphQL schema of the plugin system of the reactive graph.
10    ReactiveGraphPluginSchema,
11    /// Prints the GraphQL schema of the runtime of the reactive graph.
12    ReactiveGraphRuntimeSchema,
13}