Skip to content

Commit

Permalink
Add: almost all remaining slides
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldanielecki committed Jun 23, 2024
1 parent cf9e103 commit 3393898
Show file tree
Hide file tree
Showing 7 changed files with 68 additions and 4 deletions.
Binary file added assets/graphql-newsletter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/graphql-voyager.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/interest-github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/interest-google-trends.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/interest-satisfaction.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/interest-stackoverflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
72 changes: 68 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,53 @@ <h2>Global Object Identification: REST</h2>
GET /resources/:id
</code></pre>
</section>
<section>
<h1>Pagination</h1>
<p>Let my frontend fetch a page.</p>
</section>
<section>
<h2>Pagination: GraphQL</h2>
<pre><code>
query {
items(limit: 10, offset: 20) {
total
limit
offset
items {
id
name
}
}
}
</pre></code>
</section>
<section>
<h2>Pagination: REST</h2>
<pre><code>
GET /api/items?limit=10&offset=20
</code></pre>
</section>
<section>
<h1>Sorting</h1>
<p>Let my frontend sort the results.</p>
</section>
<section>
<h2>Sorting: GraphQL</h2>
<pre><code>
query {
items(sort: { field: "name", order: DESC }) {
id
name
}
}
</pre></code>
</section>
<section>
<h2>Sorting: REST</h2>
<pre><code>
GET /api/items?sortBy=name&order=desc
</code></pre>
</section>
<section>
<h1>StackOverflow</h1>
<p>What are Developers asking for?</p>
Expand All @@ -440,6 +487,9 @@ <h1>Demo</h1>
<section>
<img data-src="assets/introspection-off-prod.png">
</section>
<section>
<img data-src="assets/graphql-voyager.png">
</section>
<section>
<img data-src="assets/introspection-security.png">
</section>
Expand Down Expand Up @@ -590,13 +640,27 @@ <h2>Unit Testing: GraphQL</h2>
});
</pre></code>
</section>
<section>
<h1>Trends</h1>
</section>
<section>
<img data-src="assets/interest-github.png">
</section>
<section>
<img data-src="assets/interest-google-trends.png">
</section>
<section>
<img data-src="assets/interest-stackoverflow.png">
</section>
<section>
<img data-src="assets/interest-satisfaction.png">
</section>
<section>
<img data-src="assets/graphql-newsletter.png">
</section>
<section>
<h1>Conclusion</h1>
</section>
<!-- <ul>
<li>Pagination</li>
<li>Sorting</li>
</ul> -->
</div>
</div>

Expand Down

0 comments on commit 3393898

Please sign in to comment.