1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
use crate::;
/// The Contracts extension allows you to control which part of the schema will be exposed to
/// clients for GraphQL queries, introspection and also the MCP endpoint if active.
///
/// Contracts are built and cached for a particular key. This can be statically defined the
/// `grafbase.toml` file:
///
/// ```toml
/// [graph]
/// contract_key = "<key>"
/// ```
///
/// Or dynamically provided by the [`on_request()`](crate::HooksExtension::on_request()) hook:
///
/// ```rust
/// # use grafbase_sdk::{HooksExtension, host_io::http::Method, types::{ErrorResponse, Error, Configuration, GatewayHeaders, OnRequestOutput}};
/// struct Hooks;
/// impl HooksExtension for Hooks {
/// # fn new(config: Configuration) -> Result<Self, Error> { Ok(Hooks) }
/// #[allow(refining_impl_trait)]
/// fn on_request(&mut self, url: &str, method: Method, headers: &mut GatewayHeaders) -> Result<OnRequestOutput, ErrorResponse> {
/// Ok(OnRequestOutput::new().contract_key("my-contract-key"))
/// }
/// }
/// ```
///
/// In addition to the key, the extension will receive a list of all the directives defined by said
/// extension and the list of GraphQL subgraphs. For each directive it must specify whether the
/// decorated element is part of the exposed API or not. If not, they're treated as if
/// `@inaccessible` was applied on them.
///
/// # Example
///
/// You can initialize a new resolver extension with the Grafbase CLI:
///
/// ```bash
/// grafbase extension init --type contracts my-contracts
/// ```
///
/// ```rust
/// use grafbase_sdk::{
/// ContractsExtension,
/// types::{Configuration, Error, Contract, ContractDirective, GraphqlSubgraph},
/// };
///
/// #[derive(ContractsExtension)]
/// struct MyContracts;
///
/// impl ContractsExtension for MyContracts {
/// fn new(config: Configuration) -> Result<Self, Error> {
/// Ok(Self)
/// }
///
/// fn construct(
/// &mut self,
/// key: String,
/// directives: Vec<ContractDirective<'_>>,
/// subgraphs: Vec<GraphqlSubgraph>,
/// ) -> Result<Contract, Error> {
/// Ok(Contract::new(&directives, true))
/// }
/// }
/// ```
///
/// I