Skip to content

Commit 9c815cc

Browse files
authored
Add GraphQL Day at FOST 2026 events to /community/events (#2366)
## Summary - Adds four upcoming GraphQL Day at FOST 2026 conferences to the community events page - **Singapore** — Apr 14-15 - **NYC** — May 13-14 - **Melbourne** — Oct 28-29 - **Paris** — Dec 1-3 - All events link to `/day/2026/<city>` (routes coming via the `graphql-day` branch) - Host: FOST & GraphQL Community ![Upcoming events section showing FOST events](https://files.catbox.moe/jamcil.png) ## Notes - Event links point to `/day/2026/*` pages which will be added by the GraphQL Day pages PR (`graphql-day` branch). Until that merges, the links will 404. - Amsterdam is omitted as it's still TBC.
1 parent e2c9e4e commit 9c815cc

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

src/app/(main)/community/events/events.ts

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,24 @@ export interface Event {
1212
}
1313

1414
export const events: Event[] = [
15+
{
16+
name: "GraphQL Day at FOST Paris",
17+
slug: "graphql-day-fost-paris-2026",
18+
location: "Paris",
19+
date: "2026-12-01T09:00:00+01:00",
20+
eventLink: "/day/2026/paris",
21+
host: "FOST & GraphQL Community",
22+
hostLink: "https://www.joinfost.io",
23+
},
24+
{
25+
name: "GraphQL Day at FOST Melbourne",
26+
slug: "graphql-day-fost-melbourne-2026",
27+
location: "Melbourne",
28+
date: "2026-10-28T09:00:00+11:00",
29+
eventLink: "/day/2026/melbourne",
30+
host: "FOST & GraphQL Community",
31+
hostLink: "https://www.joinfost.io",
32+
},
1533
{
1634
name: "WG Day 2026",
1735
slug: "wg-day-2026",
@@ -20,6 +38,15 @@ export const events: Event[] = [
2038
eventLink: "/conf/2026/wg-day",
2139
host: "GraphQL Foundation",
2240
},
41+
{
42+
name: "GraphQL Day at FOST NYC",
43+
slug: "graphql-day-fost-nyc-2026",
44+
location: "New York",
45+
date: "2026-05-13T09:00:00-04:00",
46+
eventLink: "/day/2026/nyc",
47+
host: "FOST & GraphQL Community",
48+
hostLink: "https://www.joinfost.io",
49+
},
2350
{
2451
name: "GraphQLConf 2026",
2552
slug: "graphql-conf-2026",
@@ -28,6 +55,15 @@ export const events: Event[] = [
2855
eventLink: "/conf/2026",
2956
host: "GraphQL Foundation",
3057
},
58+
{
59+
name: "GraphQL Day at FOST Singapore",
60+
slug: "graphql-day-fost-singapore-2026",
61+
location: "Singapore",
62+
date: "2026-04-14T09:00:00+08:00",
63+
eventLink: "/day/2026/singapore",
64+
host: "FOST & GraphQL Community",
65+
hostLink: "https://www.joinfost.io",
66+
},
3167
{
3268
name: "GraphQL Day at APIDays",
3369
slug: "graphql-day-at-apidays",

0 commit comments

Comments
 (0)