libgraphql-core 0.0.8

Core libraries provided by the `libgraphql` crate.
Documentation
1
2
3
4
5
6
7
8
9
/// Similar to [`Operation`](crate::operation::Operation), except without the
/// corresponding metadata. Useful when representing a group or category of
/// [`Operation`](crate::operation::Operation)s.
#[derive(Clone, Debug, PartialEq)]
pub enum OperationKind {
    Mutation,
    Query,
    Subscription,
}