graphql_federated_graph/directives/
authorized.rs

1use crate::{InputValueDefinitionSet, SelectionSet, Value};
2
3#[derive(Debug, Clone, PartialEq, PartialOrd)]
4pub struct AuthorizedDirective {
5    pub fields: Option<SelectionSet>,
6    pub node: Option<SelectionSet>,
7    pub arguments: Option<InputValueDefinitionSet>,
8    pub metadata: Option<Value>,
9}