Skip to content
Standard
Reader
Log in
Tag
Graphql
Articles and publications tagged Graphql across the Atmosphere.
25
articles
9
publications
Articles
Publications
Recent
Recent
Trending
Most popular
Jeff Auriemma
·
Aug 7, 2026
GraphQL Codegen, stateless MCP, prompt-as-policy, persisted queries
Week of 2026-08-03 roundup
graphql
·
mcp
Jeff Auriemma
·
Aug 4, 2026
You can't prompt your way into policy
Putting policy inside plain-language instructions gives the model a lot of (expensive) work to do before it can act, and there are no guarantees about safety. Furthermore, other prompts in the context window may be pushing in a different direction. Here's a vision for a better governance model via a context graph.
mcp
·
information security
Jeff Auriemma
·
Jul 31, 2026
Hype cycle, bad takes, API design, GraphQL + AI, and marketing
graphql
·
software development
Jeff Auriemma
·
Jul 24, 2026
Context graphs, MCP tools, plain text, making users awesome, and events!
agents
·
mcp
DevOps - The Web's Largest Collection of DevOps Content
·
Jul 14, 2026
GitHub API Abuse, ‘Ghost’ Accounts Part of Malicious Efforts to Map Organizations
Blogs
·
Business of DevOps
The Stack Overflow Blog - Stack Overflow
·
Jun 16, 2026
If context is king, architecture is the castle…
podcast
·
se-tech
Sahil Kapoor's Playbook
·
May 12, 2026
Pagination
Pagination is the API pattern for splitting a large collection into smaller pages so clients fetch results incrementally. It is one of the universal API design decisions, with consequences for performance, consistency, and the client developer experience. Common strategies * Offset / page-number. ?page=3&limit=20. Simple, supports jumping to arbitrary pages, but slow on large tables and unstable under concurrent inserts (a row added during paging causes duplicates or skips). * Cursor / keys
RFC 5988
·
REST API
Sahil Kapoor's Playbook
·
May 12, 2026
JSON
JSON (JavaScript Object Notation) is a lightweight, text-based data interchange format. It represents data as a small set of structures (objects, arrays, strings, numbers, booleans, null) that map naturally to native types in most programming languages, which is why it has become the default payload format for web APIs. Structure * Object: { "key": value } with string keys * Array: [ value, value, ... ] * String: double-quoted, with backslash escapes * Number: integer or floating-point, n
RFC 8259
·
ECMA-404
Sahil Kapoor's Playbook
·
May 12, 2026
gRPC
gRPC is a high-performance RPC framework developed at Google, using HTTP/2 as the transport and Protocol Buffers (protobuf) as the schema and serialization format. It is the default choice for internal service-to-service communication at many companies running microservices in compiled languages. How it works Services are defined in .proto files specifying messages and RPC methods. A code generator produces strongly typed client and server stubs in target languages. Calls travel over HTTP/2 s
REST API
·
GraphQL
Sahil Kapoor's Playbook
·
May 12, 2026
HTTP
HTTP (Hypertext Transfer Protocol) is the application-layer protocol the web runs on. It defines how clients (typically browsers or API consumers) request resources from servers using methods like GET, POST, PUT, and DELETE, and how servers respond with status codes, headers, and an optional body. How it works HTTP is a request-response protocol over a reliable transport, traditionally TCP. A request consists of a method, a path, a set of headers, and an optional body. A response consists of
REST API
·
GraphQL
DevOps - The Web's Largest Collection of DevOps Content
·
Apr 15, 2026
SmartBear Extends Scope of API Lifecycle Management Ambitions
AI
·
API
東京科学大学デジタル創作同好会traP
·
Mar 24, 2026
GraphQLで遊ぶ
新歓ブログリレー2026
·
GraphQL
Devtools FM
·
Feb 15, 2026
Joel Griffith - Browserless
Joel Griffith explains how Browserless runs headless browser automation at scale and introduces BrowserQL for querying the web with SQL-like syntax.
browserless
·
joel griffith
Devtools FM
·
Jun 1, 2025
Peter Pistorius - Redwood SDK
Peter Pistorius discusses Redwood's evolution into a serverless React Server Components framework and his vision for personal software development.
redwood
·
open source
Devtools FM
·
Sep 8, 2024
Predrag Gruevski - Trustfall, Cargo Semver Checks, and the Future of Query-Based Tools
Predrag Gruevski explores Trustfall, a revolutionary query tool that turns anything into queryable data, and cargo-semver-checks for Rust semantic versioning.
rust
·
rustlang
enumerator.dev
·
Jul 17, 2024
Documenting Source Service in Stitched Schemas
Subschemas in this project often share types, meaning these types need to be merged into the superschema for the gateway. When these types are merged, we have no easy way of knowing which service each field comes from.
graphql
·
schema-stitching
enumerator.dev
·
Jul 17, 2024
Documenting Source Service in Stitched Schemas
Subschemas in this project often share types, meaning these types need to be merged into the superschema for the gateway. When these types are merged, we have no easy way of knowing which service each field comes from.
graphql
·
schema-stitching
Devtools FM
·
Feb 25, 2024
Robert Balicki - Isograph, Relay, and the Future of Data Fetching in React
Robert Balicki introduces Isograph as a potential future of React data fetching, comparing it to his experience building Relay at Meta.
react
·
relay
Devtools FM
·
Jul 29, 2023
Tuomas Artman - Linear
Tuomas Artman from Linear breaks down the engineering behind their lightning-fast sync engine that powers the beloved modern issue tracking tool.
devtools
·
devtoolsfm
Devtools FM
·
May 11, 2023
Sabin Adams - Prisma
Developer advocate Sabin Adams dives into Prisma's type-safe ORM magic, exploring schema power, Prisma Accelerate, and the future of database tooling.
prisma
·
graphql
vivshaw's webbed sight
·
Dec 21, 2020
Integrating Yesod and Morpheus GraphQL
It's all about the types
Haskell
·
Yesod
Angular.Schule
·
Jun 25, 2019
API von 0 auf 100: Angular und GraphQL
Im Juni 2019 halten einen neuen Talk auf den beiden Konferenzen Developer Week und enterJS. Wir stellen Ihnen GraphQL und Angular vor.
Angular
·
TypeScript
Angular.Schule
·
Jun 16, 2018
Unsere Vorträge zur DWX und enterJS 2018
Im Juni 2018 halten wir eine Reihe von Talks auf mehreren Konferenzen. Dies ist eine Liste aller Vorträge und des Workshops.
Angular
·
TypeScript
Angular.Schule
·
Jun 14, 2018
Generating Angular API clients with Apollo and GraphQL code generator
In this article, I will give a short introduction to GraphQL and then we shall look at at Apollo Angular and the GraphQL code generator. We will combine the flexibility of Graphql with the safety of strongly typed TypeScript code that is consistent between server and client.
Graphql
·
Codegen
Home
Latest
Discover
Search