reactive_graph/client/introspection/
commands.rs

1use clap::Subcommand;
2
3#[derive(Subcommand, Debug, Clone)]
4pub(crate) enum IntrospectionQueryCommands {
5    /// Get the GraphQL schema of the reactive graph.
6    #[non_exhaustive]
7    ReactiveGraph,
8    /// Get the GraphQL schema of the dynamic graph.
9    #[non_exhaustive]
10    DynamicGraph,
11    /// Get the GraphQL schema of the reactive graph runtime.
12    #[non_exhaustive]
13    ReactiveGraphRuntime,
14    /// Get the GraphQL schema of the plugin system of reactive graph.
15    #[non_exhaustive]
16    ReactiveGraphPlugins,
17}