SlideShare a Scribd company logo
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
+
Building GraphQL APIs in C#.pptx
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
https://facebook.com/user/id
https://facebook.com/user/id/events
https://facebook.com/user/id/friends-suggestions
https://facebook.com/user/id/friends-birthdays
…
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
GraphQL API Requests
query {
user(id:18794326) {
name
events {
count
}
friends_suggestions(first: 1) {
name
mutual_friends {
count
}
}
}
}
{
"data": {
"user": {
"name": "Brandon Minnick",
"events": {
"count": 4
},
"friends_suggestions": [{
"name": "Seth Juarez",
"mutual_friends": {
"count": 18
}
}
]
}
}
}
Query Response
GitHub
GraphQL API
Building GraphQL APIs in C#.pptx
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
GraphQL APIs Have One Endpoint
Each GraphQL Request Uses The Same API Endpoint
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
GraphQL APIs Are Self Documenting
Users can explore GraphQL APIs using GraphiQL
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
GraphQL Requests Are POST Requests
GraphQL requests leverage the HTTP POST Method
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
{ “query” : “[Your GraphQL Query]” }
GraphQL Request Body is JSON
JSON contains one field: query
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
GraphQL Response is JSON
Like REST APIs, GraphQL APIs return JSON
Let’s Write
Some Code
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
 GraphQL-DotNet
 Open Source (150+ Contributors)
 16.5M NuGet Downloads
AWS
AppSync
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
Resources
https://codetraveler.io/dotnet-graphql-orlando/
@TheCodeTraveler https://codetraveler.io/dotnet-graphql-orlando/
Thank You
https://codetraveler.io/dotnet-graphql-orlando/

More Related Content

Similar to Building GraphQL APIs in C#.pptx (20)

PDF
HackMIT Lightning Talk
Matt Harris
 
PDF
Social Media for Cause Marketers - CMF 2009 Workshop
MediaSauce
 
PDF
Buildingplatforms
codebits
 
ODP
Illuminated Hacks -- Where 2.0 101 Tutorial
mikel_maron
 
PPTX
Intro GraphQL
Simona Cotin
 
PPT
Mashups & APIs
Pamela Fox
 
PDF
HackMIT Presentation
Matt Harris
 
PPTX
Xamarin + GraphQL
Brandon Minnick, MBA
 
PDF
A tech writer, a map, and an app
Sarah Maddox
 
PPT
OpenSocial - GTUG Stockholm Meeting Oct 1 2009
Jacob Gyllenstierna
 
PDF
GraphQL - when REST API is to less - lessons learned
MarcinStachniuk
 
PDF
GraphQL - when REST API is to less - lessons learned
MarcinStachniuk
 
PDF
[DevCrowd] GraphQL - gdy API RESTowe to za mało
MarcinStachniuk
 
PDF
BruJUG Brussels GraphQL when RESR API is to less - lessons learned
MarcinStachniuk
 
PDF
The DiSo Project and the Open Web
Chris Messina
 
PPTX
The Flash Facebook Cookbook - FlashMidlands
James Ford
 
PDF
GraphQL - when REST API is to less - lessons learned
MarcinStachniuk
 
PPTX
API Design - 3rd Edition
Apigee | Google Cloud
 
PDF
Fighting fraud: finding duplicates at scale
Alexey Grigorev
 
PDF
GraphQL with .NET Core
Mark Lechtermann
 
HackMIT Lightning Talk
Matt Harris
 
Social Media for Cause Marketers - CMF 2009 Workshop
MediaSauce
 
Buildingplatforms
codebits
 
Illuminated Hacks -- Where 2.0 101 Tutorial
mikel_maron
 
Intro GraphQL
Simona Cotin
 
Mashups & APIs
Pamela Fox
 
HackMIT Presentation
Matt Harris
 
Xamarin + GraphQL
Brandon Minnick, MBA
 
A tech writer, a map, and an app
Sarah Maddox
 
OpenSocial - GTUG Stockholm Meeting Oct 1 2009
Jacob Gyllenstierna
 
GraphQL - when REST API is to less - lessons learned
MarcinStachniuk
 
GraphQL - when REST API is to less - lessons learned
MarcinStachniuk
 
[DevCrowd] GraphQL - gdy API RESTowe to za mało
MarcinStachniuk
 
BruJUG Brussels GraphQL when RESR API is to less - lessons learned
MarcinStachniuk
 
The DiSo Project and the Open Web
Chris Messina
 
The Flash Facebook Cookbook - FlashMidlands
James Ford
 
GraphQL - when REST API is to less - lessons learned
MarcinStachniuk
 
API Design - 3rd Edition
Apigee | Google Cloud
 
Fighting fraud: finding duplicates at scale
Alexey Grigorev
 
GraphQL with .NET Core
Mark Lechtermann
 

More from Brandon Minnick, MBA (20)

PPTX
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
PPTX
Introduction to Serverless with AWS Lambda in C#.pptx
Brandon Minnick, MBA
 
PPTX
Correcting Common Mistakes, AsyncAwait.pptx
Brandon Minnick, MBA
 
PPTX
The .NET MAUI Community Toolkits.pptx
Brandon Minnick, MBA
 
PPTX
Introduction to Serverless with AWS Lambda in C#.pptx
Brandon Minnick, MBA
 
PPTX
Correcting Common Async Await Mistakes in .NET
Brandon Minnick, MBA
 
PPTX
AWS Toolkit.pptx
Brandon Minnick, MBA
 
PPTX
Building MAUI UIs in C#.pptx
Brandon Minnick, MBA
 
PPTX
Creating Apps with .NET MAUI.pptx
Brandon Minnick, MBA
 
PPTX
Introduction to Serverless with AWS Lambda in C#.pptx
Brandon Minnick, MBA
 
PPTX
Correcting Common .NET Mistakes in Async Await .pptx
Brandon Minnick, MBA
 
PPTX
Introducing .NET MAUI Toolkit.pptx
Brandon Minnick, MBA
 
PPTX
Building MAUI UI in C#.pptx
Brandon Minnick, MBA
 
PPTX
Creating Apps with .NET MAUI
Brandon Minnick, MBA
 
PPTX
Creating Apps With .NET MAUI for iOS, Android, macOS + Windows
Brandon Minnick, MBA
 
PPTX
Creating Xamarin.Forms UIs is C#
Brandon Minnick, MBA
 
PPTX
The Future of Xamarin
Brandon Minnick, MBA
 
PPTX
Creating iOS & Android Apps using Xamarin
Brandon Minnick, MBA
 
PPTX
Creating Native iOS & Android Apps in C#
Brandon Minnick, MBA
 
PPTX
DevReach: Creating Xamarin.Forms UIs in C#
Brandon Minnick, MBA
 
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
Introduction to Serverless with AWS Lambda in C#.pptx
Brandon Minnick, MBA
 
Correcting Common Mistakes, AsyncAwait.pptx
Brandon Minnick, MBA
 
The .NET MAUI Community Toolkits.pptx
Brandon Minnick, MBA
 
Introduction to Serverless with AWS Lambda in C#.pptx
Brandon Minnick, MBA
 
Correcting Common Async Await Mistakes in .NET
Brandon Minnick, MBA
 
AWS Toolkit.pptx
Brandon Minnick, MBA
 
Building MAUI UIs in C#.pptx
Brandon Minnick, MBA
 
Creating Apps with .NET MAUI.pptx
Brandon Minnick, MBA
 
Introduction to Serverless with AWS Lambda in C#.pptx
Brandon Minnick, MBA
 
Correcting Common .NET Mistakes in Async Await .pptx
Brandon Minnick, MBA
 
Introducing .NET MAUI Toolkit.pptx
Brandon Minnick, MBA
 
Building MAUI UI in C#.pptx
Brandon Minnick, MBA
 
Creating Apps with .NET MAUI
Brandon Minnick, MBA
 
Creating Apps With .NET MAUI for iOS, Android, macOS + Windows
Brandon Minnick, MBA
 
Creating Xamarin.Forms UIs is C#
Brandon Minnick, MBA
 
The Future of Xamarin
Brandon Minnick, MBA
 
Creating iOS & Android Apps using Xamarin
Brandon Minnick, MBA
 
Creating Native iOS & Android Apps in C#
Brandon Minnick, MBA
 
DevReach: Creating Xamarin.Forms UIs in C#
Brandon Minnick, MBA
 
Ad

Recently uploaded (20)

PPTX
Simple and concise overview about Quantum computing..pptx
mughal641
 
PDF
Market Insight : ETH Dominance Returns
CIFDAQ
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
PDF
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PPTX
Agentic AI in Healthcare Driving the Next Wave of Digital Transformation
danielle hunter
 
PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
PDF
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
PPTX
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
PPTX
The Future of AI & Machine Learning.pptx
pritsen4700
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PDF
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
PDF
NewMind AI Weekly Chronicles – July’25, Week III
NewMind AI
 
PPTX
AI Code Generation Risks (Ramkumar Dilli, CIO, Myridius)
Priyanka Aash
 
PDF
Per Axbom: The spectacular lies of maps
Nexer Digital
 
PDF
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
PDF
GDG Cloud Munich - Intro - Luiz Carneiro - #BuildWithAI - July - Abdel.pdf
Luiz Carneiro
 
PDF
Brief History of Internet - Early Days of Internet
sutharharshit158
 
PPTX
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
PDF
Responsible AI and AI Ethics - By Sylvester Ebhonu
Sylvester Ebhonu
 
Simple and concise overview about Quantum computing..pptx
mughal641
 
Market Insight : ETH Dominance Returns
CIFDAQ
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
Agentic AI in Healthcare Driving the Next Wave of Digital Transformation
danielle hunter
 
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
The Future of AI & Machine Learning.pptx
pritsen4700
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
NewMind AI Weekly Chronicles – July’25, Week III
NewMind AI
 
AI Code Generation Risks (Ramkumar Dilli, CIO, Myridius)
Priyanka Aash
 
Per Axbom: The spectacular lies of maps
Nexer Digital
 
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
GDG Cloud Munich - Intro - Luiz Carneiro - #BuildWithAI - July - Abdel.pdf
Luiz Carneiro
 
Brief History of Internet - Early Days of Internet
sutharharshit158
 
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
Responsible AI and AI Ethics - By Sylvester Ebhonu
Sylvester Ebhonu
 
Ad

Building GraphQL APIs in C#.pptx