Skip to main content

libgraphql_parser/ast/
operation_type.rs

1/// The kind of a GraphQL operation.
2///
3/// See
4/// [Operations](https://spec.graphql.org/September2025/#sec-Language.Operations)
5/// in the spec.
6#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
7pub enum OperationKind {
8    Mutation,
9    Query,
10    Subscription,
11}