~/writingDavis Brown

writing / Jun 4, 2026 · 6 min

One GraphQL schema, two backends: PHP and C#

Designing API endpoints that front enterprise HR services in a service-oriented architecture, without leaking the seams to the client.

[ PLACEHOLDER — the real post goes here. The title and summary above are a starting point drawn from work you have actually shipped; rewrite or delete. ]

A heading

Body copy renders with the site’s type tokens: 18px, 1.7 line height, capped at about 68ch so a paragraph stays readable.

// Code blocks scroll horizontally rather than widening the page.
const resolvers = {
  Query: {
    employee: (_: unknown, { id }: { id: string }, ctx: Context) =>
      ctx.loaders.employee.load(id),
  },
};

Another paragraph, so the spacing between blocks stays visible while the design is still being checked.

← All posts