SlideShare a Scribd company logo
1 of 98
Download to read offline
Scaling Your Team with
GraphQL
Why relationships matter
Learnings from GraphQL Conf 2019
Joel Bowen
Sr. Software Engineer @ Skookum
@JoelSocialized : hello@joel.software
Have you heard about GraphQL?
Let’s talk about the spec
This is the specification for GraphQL, a query language and
execution engine originally created at Facebook in 2012 for
describing the capabilities and requirements of data models
for client‐server applications. The development of this open
standard started in 2015.
https://graphql.github.io/graphql-spec
So, what is GraphQL?
GraphQL is an agreement
(hint: relationship)
between the client and the server
GraphQL is a query language for APIs
GraphQL is not
a database query language
GraphQL doesn't
specify where or how to store your data
GraphQL doesn't
specify how to execute retrieval of your
data within your various services
Still have some questions?
Let’s refactor your mind from REST
GET
POST
PUT
PATCH
DELETE
QUERY
MUTATION
SUBSCRIPTION
Refactoring Your Mind From REST — Lachlan Young
https://youtu.be/xHLzguFd8Ug
So, what does this look like?
GET /projects
/projects/{id}
GET /contributors
/contributors/{id}
...
RESOURCES
REST
https://graphql.org/learn/serving-over-http/
GET
/graphql?query={...entities}
GraphQL
https://graphql.org/learn/serving-over-http/
GET
/graphql?query={...entities}
POST /graphql
{
query: {...entities}
operationName: ...
variables: { ... }
}
OPTIONAL
GraphQL
https://graphql.org/learn/serving-over-http/
Entities?
type Project {
name: String
tagline: String
contributors: [User]
}
https://graphql.org/
type Project {
name: String
tagline: String
contributors: [User]
}
https://graphql.org/
RELATIONSHIP!
{
project(name: "GraphQL") {
tagline
}
}
https://graphql.org/
REQUEST
{
project(name: "GraphQL") {
tagline
}
}
https://graphql.org/
REQUEST
YOU COULD ASK
FOR “NAME”, TOO!
{
“project”: {
“tagline”: "A query language for
APIs"
}
}
https://graphql.org/
RESPONSE
{
project(name: "GraphQL") {
tagline
contributors {
username
}
}
}
https://graphql.org/
REQUEST
{
“project”: {
“tagline”: "A query language for
APIs",
“contributors”: [
{username...},
{username...}
]
}
}
https://graphql.org/
RESPONSE
So, how does this help?
Request Waterfalls
Overfetching1
Underfetching
Type-safety
1
: https://www.arxiv-vanity.com/papers/1906.07535/
Documentation
Code Generation
Fast Mocking
Query Validation
How does this not help?
Caching
Rate Limiting
Authorization
Load Balancing
CORS
Tracing & Analytics
File Uploads
(Uploads have been proposed by Apollo, among others, but do not appear to be destined for the spec)
https://blog.apollographql.com/file-uploads-with-apollo-server-2-0-5db2f3f60675
https://github.com/graphql/graphql-spec/issues/563
https://github.com/graphql/graphql-spec/issues/349
Why not?
“This is the Unix philosophy: Write programs that do one
thing and do it well. Write programs to work together.”
- Doug McIlroy
“There are a lot of questions that [GraphQL] very specifically
does not answer… that’s because [these questions] were
already solved by FB in 2012”
- Dan Schafer (GraphQL Co-Creator)
GraphQL before GraphQL — Dan Schafer
https://youtu.be/gb1R-fWP1Yw
These are still important considerations!
GraphQL as a spec is “small”, and should
remain a thin layer in your stack
What might a GraphQL architecture look
like?
https://www.howtographql.com/basics/3-big-picture/
CLIENTS DATABASE
https://www.howtographql.com/basics/3-big-picture/
CLIENTS DATABASE
https://www.howtographql.com/basics/3-big-picture/
CLIENTS DATABASE
MICROSERVICE
THIRD-PARTY
https://www.howtographql.com/basics/3-big-picture/
CLIENTS DATABASE
MICROSERVICE
THIRD-PARTY
https://www.howtographql.com/basics/3-big-picture/
CLIENTS DATABASE
MICROSERVICE
THIRD-PARTY
DEFINE THE
RELATIONSHIPS
So, you want to build a GraphQL API
Let’s talk about principles
Principled GraphQL
INTEGRITY / AGILITY / OPERATIONS
https://principledgraphql.com
INTEGRITY
1. One Graph
Your company should have one unified graph, instead of multiple graphs created
by each team.
https://principledgraphql.com/integrity#1-one-graph
INTEGRITY
2. Federated Implementation
Though there is only one graph, the implementation of that graph should be
federated across multiple teams.
https://principledgraphql.com/integrity#2-federated-implementation
3. Track the Schema in a Registry
There should be a single source of truth for registering and tracking the graph.
INTEGRITY
https://principledgraphql.com/integrity#3-track-the-schema-in-a-registry
4. Abstract, Demand-Oriented Schema
The schema should act as an abstraction layer that provides flexibility to
consumers while hiding service implementation details.
AGILITY
https://principledgraphql.com/agility#4-abstract-demand-oriented-schema
5. Use an Agile Approach to Schema Development
The schema should be built incrementally based on actual requirements and
evolve smoothly over time.
AGILITY
https://principledgraphql.com/agility#5-use-an-agile-approach-to-schema-development
6. Iteratively Improve Performance
Performance management should be a continuous, data-driven process, adapting
smoothly to changing query loads and service implementations.
AGILITY
https://principledgraphql.com/agility#6-iteratively-improve-performance
7. Use Graph Metadata to Empower Developers
Developers should be equipped with rich awareness of the graph throughout the
entire development process.
AGILITY
https://principledgraphql.com/agility#7-use-graph-metadata-to-empower-developers
8. Access and Demand Control
Grant access to the graph on a per-client basis, and manage what and how
clients can access it.
OPERATIONS
https://principledgraphql.com/operations#8-access-and-demand-control
9. Structured Logging
Capture structured logs of all graph operations and leverage them as the primary
tool for understanding graph usage.
OPERATIONS
https://principledgraphql.com/operations#9-structured-logging
10. Separate the GraphQL Layer from the Service Layer
Adopt a layered architecture with data graph functionality broken into a separate
tier rather than baked into every service.
OPERATIONS
https://principledgraphql.com/operations#10-separate-the-graphql-layer-from-the-service-layer
The most important thing about GraphQL
is...
The schema.graphql
Author’s opinion
You will have many data stores and
services but one graph
How do you get schema out of your
services?
“Though there is only one graph, the implementation of that
graph should be federated across multiple teams.”
- Principled GraphQL: #2
https://principledgraphql.com/integrity#2-federated-implementation
What if I want to distribute my schema
authorship across my services?
This. Is. Difficult.
This. Is. Confusing.
Schema Stitching, Schema Federation,
GraphQL Gateway, GraphQL Modules,
Namespaces, Schema Delegation,
Schema Composition...
“When we distribute our GraphQL Schema across different
services... what we're saying is 'I want to use GraphQL for my
inter-service communication'”
- Marc-André Giroux (GitHub)
So You Want to Distribute Your GraphQL Schema — Marc-Andre Giroux
https://youtu.be/Vq0ajno-zgw
Focus on what matters: use-cases
Focus on what matters: use-cases
RELATIONSHIPS
FEATURES <-> DATA
Don’t design your schema based on your
services architecture
Stay client focused, consider BFF
https://philcalcado.com/2015/09/18/the_back_end_for_front_end_pattern_bff.html
https://philcalcado.com/2019/07/12/some_thoughts_graphql_bff.html
If you do distribute your schema, “stitch”
statically, track changes
https://principledgraphql.com/integrity#3-track-the-schema-in-a-registry
Marc-Andre Giroux: https://youtu.be/Vq0ajno-zgw?t=1102
But ideally, distribute your execution,
not your schema
So you Want to Distribute your GraphQL Schema?
Marc Andre-Giroux
30 min
https://youtu.be/Vq0ajno-zgw
Infinite Backwards Compatibility
Adam D. I. Kramer
30 min
https://youtu.be/FGCqA9PjVQk
Apollo Schema Federation
James Baxley
30 min
https://youtu.be/Uw-Z1aUQvgg
So, you want to use a GraphQL API
Let’s talk about tools
You’ve got a schema, how do you use it?
One option: graphql-cli
https://github.com/graphql-cli/graphql-cli
.graphqlconfig
https://github.com/graphql-cli/graphql-cli
schema.graphql
https://github.com/graphql-cli/graphql-cli
GraphQL
Prisma | 53,771 installs | 185,888 downloads | Free
GraphQL extension for VSCode adds syntax highlighting, validation, and language features like go
to definition, hover information and autocompletion for graphql projects. This extension also
works with queries annotated with gql tag.
https://marketplace.visualstudio.com/items?itemName=Prisma.vscode-graphql
https://marketplace.visualstudio.com/items?itemName=Prisma.vscode-graphql
+
https://marketplace.visualstudio.com/items?itemName=Prisma.vscode-graphql
+
graphql-voyager
CLI Plugin
https://github.com/graphql-cli/graphql-cli-voyager
graphql playground
$ graphql playground
graphiql: explorer plugin
https://github.com/onegraph/graphiql-explorer
graphiql: explorer plugin
https://github.com/onegraph/graphiql-explorer
graphql-request
Select your character client
https://github.com/chentsulin/awesome-graphql#clients
https://github.com/apollographql/apollo-client
https://relay.dev/ (React)
https://aws-amplify.github.io/docs/js/api#using-graphql-endpoints
https://github.com/prisma/graphql-request
Generate mock data!
One option: https://github.com/APIs-guru/graphql-faker
Generate docs!
Browse some options: https://github.com/chentsulin/awesome-graphql
Consider maximizing your benefits with a
type-safe codebase
“When apps are developed in a typed language like TypeScript,
Java, or Swift, type information can be propagated all the way
from service type declarations through every line of code in
the app, ensuring fullstack type correctness and instant
feedback on errors.”
- Principled GraphQL: #7
https://principledgraphql.com/agility#7-use-graph-metadata-to-empower-developers
Building custom GraphQL tooling for your team
Sashko Stubailo
30 min
https://youtu.be/jegQWT-Wl64
Scaling Your GraphQL Client
Matt Mahoney
30 min
https://youtu.be/Vo8nqjiKI3A
200 OK! Error Handling in GraphQL
Sasha Solomon
30 min
https://youtu.be/A5-H6MtTvqk
So, have you heard about GraphQL?
We’re gunna program like it’s 1999
Lee Byron (GraphQL Co-Creator)
30 min - Closing Keynote
https://youtu.be/ADEav6zlDjg
“The mental model for building for the web largely
hasn’t changed in the last 20 years... This year the web
turns 30, and we look back at the steady march forward
of better abstractions, better syntax, and better mental
models that brought us here.”
How about the relationships that brought
us here?
How about the relationships that will
take us there?
Relationships thrive when they have
shared language & shared goals
“Coordination between Engineers happens with GraphQL
schemas as our common language”
- Jon Wong (Coursera)
Evolving the Graph — Jon Wong
https://youtu.be/fmsDlaKTJZs
GraphQL is an agreement
(relationship)
between the client and the server
<TeamA> & <TeamB>
Don’t just think in terms of data graphs
think in terms of relationships
Thank You
@JoelSocialized : hello@joel.software

More Related Content

What's hot

What's hot (20)

GraphQL: The Missing Link Between Frontend and Backend Devs
GraphQL: The Missing Link Between Frontend and Backend DevsGraphQL: The Missing Link Between Frontend and Backend Devs
GraphQL: The Missing Link Between Frontend and Backend Devs
 
Ultimate Guide to 30+ API Documentation Solutions
Ultimate Guide to 30+ API Documentation SolutionsUltimate Guide to 30+ API Documentation Solutions
Ultimate Guide to 30+ API Documentation Solutions
 
Rest api best practices – comprehensive handbook
Rest api best practices – comprehensive handbookRest api best practices – comprehensive handbook
Rest api best practices – comprehensive handbook
 
APIdays Singapore 2019 - Airbnb's Great Migration: Service APIs at scale, Jes...
APIdays Singapore 2019 - Airbnb's Great Migration: Service APIs at scale, Jes...APIdays Singapore 2019 - Airbnb's Great Migration: Service APIs at scale, Jes...
APIdays Singapore 2019 - Airbnb's Great Migration: Service APIs at scale, Jes...
 
Meteor MIT Tech Talk 9/18/14: Designing a New Platform For Modern Apps
Meteor MIT Tech Talk 9/18/14: Designing a New Platform For Modern AppsMeteor MIT Tech Talk 9/18/14: Designing a New Platform For Modern Apps
Meteor MIT Tech Talk 9/18/14: Designing a New Platform For Modern Apps
 
Adding GraphQL to your existing architecture
Adding GraphQL to your existing architectureAdding GraphQL to your existing architecture
Adding GraphQL to your existing architecture
 
Why UI Developers Love GraphQL - Sashko Stubailo, Apollo/Meteor
Why UI Developers Love GraphQL - Sashko Stubailo, Apollo/MeteorWhy UI Developers Love GraphQL - Sashko Stubailo, Apollo/Meteor
Why UI Developers Love GraphQL - Sashko Stubailo, Apollo/Meteor
 
React and GraphQL at Stripe
React and GraphQL at StripeReact and GraphQL at Stripe
React and GraphQL at Stripe
 
GraphQL London January 2018: Graphql tooling
GraphQL London January 2018: Graphql toolingGraphQL London January 2018: Graphql tooling
GraphQL London January 2018: Graphql tooling
 
Itb 2021 - Bulding Quick APIs by Gavin Pickin
Itb 2021 - Bulding Quick APIs by Gavin PickinItb 2021 - Bulding Quick APIs by Gavin Pickin
Itb 2021 - Bulding Quick APIs by Gavin Pickin
 
REST vs. GraphQL: Critical Look
REST vs. GraphQL: Critical LookREST vs. GraphQL: Critical Look
REST vs. GraphQL: Critical Look
 
apidays LIVE Paris - Exploring an API with Blocks by Larry Kluger
apidays LIVE Paris - Exploring an API with Blocks by Larry Klugerapidays LIVE Paris - Exploring an API with Blocks by Larry Kluger
apidays LIVE Paris - Exploring an API with Blocks by Larry Kluger
 
GraphQL over REST at Reactathon 2018
GraphQL over REST at Reactathon 2018GraphQL over REST at Reactathon 2018
GraphQL over REST at Reactathon 2018
 
Building a Better BaaS
Building a Better BaaSBuilding a Better BaaS
Building a Better BaaS
 
React with rails a perfect combination to build modern web application
React with rails a perfect combination to build modern web applicationReact with rails a perfect combination to build modern web application
React with rails a perfect combination to build modern web application
 
Introduction to GraphQL (or How I Learned to Stop Worrying about REST APIs)
Introduction to GraphQL (or How I Learned to Stop Worrying about REST APIs)Introduction to GraphQL (or How I Learned to Stop Worrying about REST APIs)
Introduction to GraphQL (or How I Learned to Stop Worrying about REST APIs)
 
Graphql Intro (Tutorial and Example)
Graphql Intro (Tutorial and Example)Graphql Intro (Tutorial and Example)
Graphql Intro (Tutorial and Example)
 
System design and architecture GgraphQL Public
System design and architecture GgraphQL PublicSystem design and architecture GgraphQL Public
System design and architecture GgraphQL Public
 
Modular GraphQL with Schema Stitching
Modular GraphQL with Schema StitchingModular GraphQL with Schema Stitching
Modular GraphQL with Schema Stitching
 
APIs Are Forever - How to Design Long-Lasting APIs
APIs Are Forever - How to Design Long-Lasting APIsAPIs Are Forever - How to Design Long-Lasting APIs
APIs Are Forever - How to Design Long-Lasting APIs
 

Similar to Scaling Your Team With GraphQL: Why Relationships Matter

Similar to Scaling Your Team With GraphQL: Why Relationships Matter (20)

GraphQL research summary
GraphQL research summaryGraphQL research summary
GraphQL research summary
 
GraphQL for Native Apps
GraphQL for Native AppsGraphQL for Native Apps
GraphQL for Native Apps
 
Scaling your GraphQL applications with Dgraph
Scaling your GraphQL applications with DgraphScaling your GraphQL applications with Dgraph
Scaling your GraphQL applications with Dgraph
 
Graphql presentation
Graphql presentationGraphql presentation
Graphql presentation
 
Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...
Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...
Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...
 
GraphQL - A query language to empower your API consumers (NDC Sydney 2017)
GraphQL - A query language to empower your API consumers (NDC Sydney 2017)GraphQL - A query language to empower your API consumers (NDC Sydney 2017)
GraphQL - A query language to empower your API consumers (NDC Sydney 2017)
 
How easy (or hard) it is to monitor your graph ql service performance
How easy (or hard) it is to monitor your graph ql service performanceHow easy (or hard) it is to monitor your graph ql service performance
How easy (or hard) it is to monitor your graph ql service performance
 
Graphql for Frontend Developers Simplifying Data Fetching.docx
Graphql for Frontend Developers Simplifying Data Fetching.docxGraphql for Frontend Developers Simplifying Data Fetching.docx
Graphql for Frontend Developers Simplifying Data Fetching.docx
 
codersera_com (1).pdf
codersera_com (1).pdfcodersera_com (1).pdf
codersera_com (1).pdf
 
apidays LIVE Paris - The Rise of GraphQL for database APIs by Karthic Rao
apidays LIVE Paris - The Rise of GraphQL for database APIs by Karthic Raoapidays LIVE Paris - The Rise of GraphQL for database APIs by Karthic Rao
apidays LIVE Paris - The Rise of GraphQL for database APIs by Karthic Rao
 
Your Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph StrategyYour Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph Strategy
 
GraphQL @ Manc.JS (March 2018)
GraphQL @ Manc.JS (March 2018)GraphQL @ Manc.JS (March 2018)
GraphQL @ Manc.JS (March 2018)
 
Michelle Garrett - Build the API you want to see in the world (with GraphQL) ...
Michelle Garrett - Build the API you want to see in the world (with GraphQL) ...Michelle Garrett - Build the API you want to see in the world (with GraphQL) ...
Michelle Garrett - Build the API you want to see in the world (with GraphQL) ...
 
Michelle Garrett - Build the API you want to see in the world (with GraphQL) ...
Michelle Garrett - Build the API you want to see in the world (with GraphQL) ...Michelle Garrett - Build the API you want to see in the world (with GraphQL) ...
Michelle Garrett - Build the API you want to see in the world (with GraphQL) ...
 
Your Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph StrategyYour Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph Strategy
 
Your Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph StrategyYour Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph Strategy
 
Your Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph Strategy Your Roadmap for An Enterprise Graph Strategy
Your Roadmap for An Enterprise Graph Strategy
 
Single-page applications and Grails
Single-page applications and GrailsSingle-page applications and Grails
Single-page applications and Grails
 
Build the API you want to see in the world
Build the API you want to see in the worldBuild the API you want to see in the world
Build the API you want to see in the world
 
Neo4j GraphTour New York_EY Presentation_Michael Moore
Neo4j GraphTour New York_EY Presentation_Michael MooreNeo4j GraphTour New York_EY Presentation_Michael Moore
Neo4j GraphTour New York_EY Presentation_Michael Moore
 

Recently uploaded

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Recently uploaded (20)

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

Scaling Your Team With GraphQL: Why Relationships Matter