Skip to content

Commit 0617666

Browse files
committed
deploy: db5d9fb
1 parent 6f9a2d2 commit 0617666

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

master/print.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ <h2 id="schema"><a class="header" href="#schema">Schema</a></h2>
320320

321321
// Root schema consists of a query, a mutation, and a subscription.
322322
// Request queries can be executed against a `RootNode`.
323-
type Schema = juniper::RootNode&lt;'static, Query, Mutation, EmptySubscription&lt;Context&gt;&gt;;
323+
type Schema = juniper::RootNode&lt;Query, Mutation, EmptySubscription&lt;Context&gt;&gt;;
324324
<span class="boring">
325325
</span><span class="boring">fn main() {
326326
</span><span class="boring"> _ = Schema::new(Query, Mutation, EmptySubscription::new());
@@ -360,7 +360,7 @@ <h2 id="execution"><a class="header" href="#execution">Execution</a></h2>
360360
}
361361
}
362362

363-
type Schema = juniper::RootNode&lt;'static, Query, EmptyMutation&lt;Ctx&gt;, EmptySubscription&lt;Ctx&gt;&gt;;
363+
type Schema = juniper::RootNode&lt;Query, EmptyMutation&lt;Ctx&gt;, EmptySubscription&lt;Ctx&gt;&gt;;
364364

365365
fn main() {
366366
// Create a context.
@@ -2521,7 +2521,7 @@ <h3 id="supported-out-of-the-box"><a class="header" href="#supported-out-of-the-
25212521
</span> }
25222522
}
25232523

2524-
type Schema = RootNode&lt;'static, Query, Mutation, EmptySubscription&gt;;
2524+
type Schema = RootNode&lt;Query, Mutation, EmptySubscription&gt;;
25252525
<span class="boring">
25262526
</span><span class="boring">fn main() {}</span></code></pre></pre>
25272527
<blockquote>
@@ -2592,7 +2592,7 @@ <h3 id="json"><a class="header" href="#json">JSON</a></h3>
25922592
}
25932593
}
25942594

2595-
type Schema = RootNode&lt;'static, Query, EmptyMutation, EmptySubscription&gt;;
2595+
type Schema = RootNode&lt;Query, EmptyMutation, EmptySubscription&gt;;
25962596

25972597
fn main() {
25982598
// Run the built-in introspection query.
@@ -2708,7 +2708,7 @@ <h2 id="coordinator"><a class="header" href="#coordinator">Coordinator</a></h2>
27082708
</span><span class="boring"> }
27092709
</span><span class="boring">}
27102710
</span><span class="boring">
2711-
</span>type Schema = RootNode&lt;'static, Query, EmptyMutation&lt;Database&gt;, Subscription&gt;;
2711+
</span>type Schema = RootNode&lt;Query, EmptyMutation&lt;Database&gt;, Subscription&gt;;
27122712

27132713
fn schema() -&gt; Schema {
27142714
Schema::new(Query, EmptyMutation::new(), Subscription)
@@ -2772,7 +2772,7 @@ <h2 id="disabling"><a class="header" href="#disabling">Disabling</a></h2>
27722772
}
27732773
}
27742774

2775-
type Schema = RootNode&lt;'static, Query, EmptyMutation, EmptySubscription&gt;;
2775+
type Schema = RootNode&lt;Query, EmptyMutation, EmptySubscription&gt;;
27762776

27772777
fn main() {
27782778
let schema = Schema::new(Query, EmptyMutation::new(), EmptySubscription::new())

master/quickstart.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ <h2 id="schema"><a class="header" href="#schema">Schema</a></h2>
281281

282282
// Root schema consists of a query, a mutation, and a subscription.
283283
// Request queries can be executed against a `RootNode`.
284-
type Schema = juniper::RootNode&lt;'static, Query, Mutation, EmptySubscription&lt;Context&gt;&gt;;
284+
type Schema = juniper::RootNode&lt;Query, Mutation, EmptySubscription&lt;Context&gt;&gt;;
285285
<span class="boring">
286286
</span><span class="boring">fn main() {
287287
</span><span class="boring"> _ = Schema::new(Query, Mutation, EmptySubscription::new());
@@ -321,7 +321,7 @@ <h2 id="execution"><a class="header" href="#execution">Execution</a></h2>
321321
}
322322
}
323323

324-
type Schema = juniper::RootNode&lt;'static, Query, EmptyMutation&lt;Ctx&gt;, EmptySubscription&lt;Ctx&gt;&gt;;
324+
type Schema = juniper::RootNode&lt;Query, EmptyMutation&lt;Ctx&gt;, EmptySubscription&lt;Ctx&gt;&gt;;
325325

326326
fn main() {
327327
// Create a context.

master/schema/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ <h1 id="schema"><a class="header" href="#schema">Schema</a></h1>
202202
</span> }
203203
}
204204

205-
type Schema = RootNode&lt;'static, Query, Mutation, EmptySubscription&gt;;
205+
type Schema = RootNode&lt;Query, Mutation, EmptySubscription&gt;;
206206
<span class="boring">
207207
</span><span class="boring">fn main() {}</span></code></pre></pre>
208208
<blockquote>
@@ -273,7 +273,7 @@ <h3 id="json"><a class="header" href="#json">JSON</a></h3>
273273
}
274274
}
275275

276-
type Schema = RootNode&lt;'static, Query, EmptyMutation, EmptySubscription&gt;;
276+
type Schema = RootNode&lt;Query, EmptyMutation, EmptySubscription&gt;;
277277

278278
fn main() {
279279
// Run the built-in introspection query.

master/schema/introspection.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ <h2 id="disabling"><a class="header" href="#disabling">Disabling</a></h2>
193193
}
194194
}
195195

196-
type Schema = RootNode&lt;'static, Query, EmptyMutation, EmptySubscription&gt;;
196+
type Schema = RootNode&lt;Query, EmptyMutation, EmptySubscription&gt;;
197197

198198
fn main() {
199199
let schema = Schema::new(Query, EmptyMutation::new(), EmptySubscription::new())

master/schema/subscriptions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ <h2 id="coordinator"><a class="header" href="#coordinator">Coordinator</a></h2>
254254
</span><span class="boring"> }
255255
</span><span class="boring">}
256256
</span><span class="boring">
257-
</span>type Schema = RootNode&lt;'static, Query, EmptyMutation&lt;Database&gt;, Subscription&gt;;
257+
</span>type Schema = RootNode&lt;Query, EmptyMutation&lt;Database&gt;, Subscription&gt;;
258258

259259
fn schema() -&gt; Schema {
260260
Schema::new(Query, EmptyMutation::new(), Subscription)

master/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)