From e64e3bd8f715960edfaccd961896bfd505e27e37 Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Thu, 5 Mar 2026 16:35:41 +0000 Subject: [PATCH 1/6] Add WG Day to events --- src/app/(main)/community/events/events.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/app/(main)/community/events/events.ts b/src/app/(main)/community/events/events.ts index a52ab5d8dd..8ef55eee88 100644 --- a/src/app/(main)/community/events/events.ts +++ b/src/app/(main)/community/events/events.ts @@ -12,6 +12,14 @@ export interface Event { } export const events: Event[] = [ + { + name: "WG Day 2026", + slug: "wg-day-2026", + location: "Menlo Park, California", + date: "2026-05-08T16:30:00+00:00", + eventLink: "/conf/2026/wg-day", + host: "GraphQL Foundation", + }, { name: "GraphQLConf 2026", slug: "graphql-conf-2026", From cc0de1dfab792089bdf102b16efabbba97979b17 Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Thu, 5 Mar 2026 16:43:11 +0000 Subject: [PATCH 2/6] New calendar merge logic --- .../sync-working-groups.ts | 24 ++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/scripts/sync-working-groups/sync-working-groups.ts b/scripts/sync-working-groups/sync-working-groups.ts index 8d0bd4a1e7..6e64abd188 100644 --- a/scripts/sync-working-groups/sync-working-groups.ts +++ b/scripts/sync-working-groups/sync-working-groups.ts @@ -56,7 +56,6 @@ async function main() { const existingMeetings = await readExistingMeetings() console.log(`Found ${existingMeetings.length} existing event(s) in file`) - const lastMeetingStart = existingMeetings.at(-1)?.start ?? null const cutoffDate = new Date( now.getTime() - DAYS_TO_KEEP * 24 * 60 * 60 * 1000, ) @@ -68,12 +67,9 @@ async function main() { maxResults: "250", }) - const timeMin = - lastMeetingStart !== null && lastMeetingStart !== undefined - ? new Date(Math.min(Date.parse(lastMeetingStart), now.getTime())) - : new Date(now.getTime() - DAYS_BACK * 24 * 60 * 60 * 1000) - + const timeMin = new Date(now.getTime() - DAYS_BACK * 24 * 60 * 60 * 1000) const timeMax = new Date(now.getTime() + DAYS_AHEAD * 24 * 60 * 60 * 1000) + searchParams.set("timeMin", timeMin.toISOString()) searchParams.set("timeMax", timeMax.toISOString()) console.log( @@ -138,7 +134,7 @@ async function main() { `Fetched ${newMeetings.length} event(s) from API (${newCount} new)`, ) - const allMeetings = mergeMeetings(existingMeetings, newMeetings) + const allMeetings = mergeMeetings(existingMeetings, newMeetings, timeMin) const netChange = allMeetings.length - existingMeetings.length if (netChange > 0) { @@ -193,21 +189,33 @@ async function readExistingMeetings(): Promise { function mergeMeetings( existing: WorkingGroupMeeting[], incoming: WorkingGroupMeeting[], + checkForDeletionsAfter: Date, ): WorkingGroupMeeting[] { + const toDelete = new Set() const byId = new Map() for (const meeting of existing) { byId.set(meeting.id, meeting) + if (Date.parse(meeting.start) > +checkForDeletionsAfter) { + toDelete.add(meeting.id) + } } for (const meeting of incoming) { + toDelete.delete(meeting.id) const existing = byId.get(meeting.id) if (!existing || meeting.updated > existing.updated) { byId.set(meeting.id, meeting) } } - return Array.from(byId.values()) + for (const id of toDelete) { + byId.delete(id) + } + + const list = Array.from(byId.values()) + list.sort((a, z) => a.start.localeCompare(z.start)) + return list } try { From bca4b2b61aba1e1529656b17a915a63684d6420d Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Thu, 5 Mar 2026 16:48:04 +0000 Subject: [PATCH 3/6] Improve logging --- scripts/sync-working-groups/sync-working-groups.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/sync-working-groups/sync-working-groups.ts b/scripts/sync-working-groups/sync-working-groups.ts index 6e64abd188..71565420c1 100644 --- a/scripts/sync-working-groups/sync-working-groups.ts +++ b/scripts/sync-working-groups/sync-working-groups.ts @@ -137,11 +137,8 @@ async function main() { const allMeetings = mergeMeetings(existingMeetings, newMeetings, timeMin) const netChange = allMeetings.length - existingMeetings.length - if (netChange > 0) { - console.log(`Added ${netChange} new event(s)`) - } else if (netChange < 0) { - console.log(`Removed ${Math.abs(netChange)} event(s)`) - } + console.log(`Net change: ${(netChange > 0 ? "+" : "") + netChange} event(s)`) + const cutoffDateStr = cutoffDate.toISOString().split("T")[0] const futureLimit = new Date(now.getTime() + DAYS_AHEAD * 24 * 60 * 60 * 1000) const futureLimitStr = futureLimit.toISOString().split("T")[0] @@ -209,6 +206,9 @@ function mergeMeetings( } } + if (toDelete.size) { + console.log(`Deleted ${toDelete.size} event(s)`) + } for (const id of toDelete) { byId.delete(id) } From be1d4129cce3f9f4508812f84ddd5c7de037c97c Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Thu, 5 Mar 2026 16:48:12 +0000 Subject: [PATCH 4/6] Update events --- .../working-group-events.ndjson | 91 ++++++++++--------- 1 file changed, 50 insertions(+), 41 deletions(-) diff --git a/scripts/sync-working-groups/working-group-events.ndjson b/scripts/sync-working-groups/working-group-events.ndjson index 3be9d8b7e7..d5787590ab 100644 --- a/scripts/sync-working-groups/working-group-events.ndjson +++ b/scripts/sync-working-groups/working-group-events.ndjson @@ -39,17 +39,18 @@ {"kind":"calendar#event","etag":"\"3529763853198142\"","id":"s9agipg1r702pfngano7pol2h5_20260122T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=czlhZ2lwZzFyNzAycGZuZ2Fubzdwb2wyaDVfMjAyNjAxMjJUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:56:07.000Z","updated":"2025-12-04T20:58:46.599Z","summary":"Composite schemas WG - Weekly 4","description":"The weekly "secondary" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

Meeting password is "composite"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://zoom.us/j/91078840351","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-01-22T12:00:00-05:00","end":"2026-01-22T13:00:00-05:00","recurringEventId":"s9agipg1r702pfngano7pol2h5","originalStartTime":{"dateTime":"2026-01-22T12:00:00-05:00","timeZone":"Europe/Berlin"},"iCalUID":"s9agipg1r702pfngano7pol2h5@google.com","sequence":1,"eventType":"default"} {"kind":"calendar#event","etag":"\"3529763867657470\"","id":"4igp67o2j2nkso49c1d6nbv040_20260122T180000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NGlncDY3bzJqMm5rc280OWMxZDZuYnYwNDBfMjAyNjAxMjJUMTgwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-04-15T10:29:33.000Z","updated":"2025-12-04T20:58:53.828Z","summary":"GraphQL OTel WG","description":"Zoom password: otel
 
https://github.com/graphql/otel-wg","location":"https://zoom.us/j/93594710848?pwd=meEB8rd5g69r5DF8zFaL8VIWO2Il1v.1","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-01-22T13:00:00-05:00","end":"2026-01-22T14:00:00-05:00","recurringEventId":"4igp67o2j2nkso49c1d6nbv040","originalStartTime":{"dateTime":"2026-01-22T13:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"4igp67o2j2nkso49c1d6nbv040@google.com","sequence":0,"eventType":"default"} {"kind":"calendar#event","etag":"\"3524923696926750\"","id":"56uko3hh68be4q73tttdicg7l2_20260122T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NTZ1a28zaGg2OGJlNHE3M3R0dGRpY2c3bDJfMjAyNjAxMjJUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-10-16T15:10:58.000Z","updated":"2025-11-06T20:44:08.463Z","summary":"GraphQL AI Working Group","description":"Sign up and view agenda at https://github.com/graphql/ai-wg


Zoom password: aiwg","location":"https://zoom.us/j/92302442188","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-01-22T13:30:00-05:00","end":"2026-01-22T14:30:00-05:00","recurringEventId":"56uko3hh68be4q73tttdicg7l2","originalStartTime":{"dateTime":"2026-01-22T13:30:00-05:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"56uko3hh68be4q73tttdicg7l2@google.com","sequence":0,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3529763823631902\"","id":"5lk8stcvmomgh5n4o8766f7nt4_20260128T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NWxrOHN0Y3Ztb21naDVuNG84NzY2ZjdudDRfMjAyNjAxMjhUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2021-02-02T17:29:31.000Z","updated":"2025-12-04T20:58:31.815Z","summary":"GraphQL.js Working Group meeting","description":"https://zoom.us/j/96871026087\nPassword: graphqljs\n\nPlease note these meetings are recorded and posted to https://youtube.graphql.org\n\nTo join, please open a PR and add yourself to the meeting agenda: https://github.com/graphql/graphql-js-wg/tree/main/agendas\n\nYou must have completed the (free) GraphQL Specification Membership Agreement prior to joining.","location":"https://zoom.us/j/96871026087?pwd=aHhrNWJIUDFoQXNDdTNzUzBkRTJ0QT09 (password: graphqljs)","creator":{"email":"bwarner@linuxfoundation.org"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-01-28T12:00:00-05:00","end":"2026-01-28T13:00:00-05:00","recurringEventId":"5lk8stcvmomgh5n4o8766f7nt4_R20240228T170000","originalStartTime":{"dateTime":"2026-01-28T12:00:00-05:00","timeZone":"UTC"},"iCalUID":"5lk8stcvmomgh5n4o8766f7nt4_R20240228T170000@google.com","sequence":0,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3529763830308350\"","id":"2pcpvfmbi9720g997rtddc907j_20260128T190000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MnBjcHZmbWJpOTcyMGc5OTdydGRkYzkwN2pfMjAyNjAxMjhUMTkwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-07-21T21:19:53.000Z","updated":"2025-12-04T20:58:35.154Z","summary":"Client Controlled Nullability WG","location":"https://zoom.us/j/95723407712?pwd=ZHhQakxqd1JlTnZJNTJXdlN3UFdQUT09","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-01-28T14:00:00-05:00","end":"2026-01-28T15:00:00-05:00","recurringEventId":"2pcpvfmbi9720g997rtddc907j","originalStartTime":{"dateTime":"2026-01-28T14:00:00-05:00","timeZone":"UTC"},"iCalUID":"2pcpvfmbi9720g997rtddc907j@google.com","sequence":2,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3529763901702878\"","id":"pag44b4o3k87r90laj5vf5t67v_20260129T190000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjAxMjlUMTkwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2025-12-04T20:59:10.851Z","summary":"GraphQL-over-HTTP WG","description":"Zoom password: httpwg","location":"https://zoom.us/j/92781382543","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-01-29T14:00:00-05:00","end":"2026-01-29T15:00:00-05:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v","originalStartTime":{"dateTime":"2026-01-29T14:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v@google.com","sequence":3,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3530925154728702\"","id":"f7cvs5ala9jtt147l3mik2mlvl_20260202T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=ZjdjdnM1YWxhOWp0dDE0N2wzbWlrMm1sdmxfMjAyNjAyMDJUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2025-12-11T14:16:17.364Z","summary":"Conference & Community Committee Meeting - Fortnightly Recurring","description":"\nYou have been invited to a recurring meeting for GraphQL Foundation\n\nWeekly Sync and Coordination Meeting for Conference Committee participants. Notes Document: https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit\n\nWays to join meeting:\n\n1. Join from PC, Mac, iPad, or Android\n\nhttps://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a\n\n2. Join via audio\n\nOne tap mobile:\nUS: +12532158782,,96286151238# or +13462487799,,96286151238\n\nOr dial:\nUS: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)\nCanada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)\n\nMeeting ID: 96286151238\n\nMeeting Passcode: 986182\n\n\nInternational numbers: https://zoom.us/u/alwnPIaVT\n","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-02T11:00:00-05:00","end":"2026-02-02T12:00:00-05:00","recurringEventId":"f7cvs5ala9jtt147l3mik2mlvl","originalStartTime":{"dateTime":"2026-02-02T11:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"f7cvs5ala9jtt147l3mik2mlvl@google.com","sequence":2,"guestsCanInviteOthers":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3540588274775390\"","id":"5lk8stcvmomgh5n4o8766f7nt4_20260128T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NWxrOHN0Y3Ztb21naDVuNG84NzY2ZjdudDRfMjAyNjAxMjhUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2021-02-02T17:29:31.000Z","updated":"2026-02-05T12:22:17.387Z","summary":"GraphQL.js Working Group meeting","description":"https://zoom.us/j/96871026087\nPassword: graphqljs\n\nPlease note these meetings are recorded and posted to https://youtube.graphql.org\n\nTo join, please open a PR and add yourself to the meeting agenda: https://github.com/graphql/graphql-js-wg/tree/main/agendas\n\nYou must have completed the (free) GraphQL Specification Membership Agreement prior to joining.","location":"https://zoom.us/j/96871026087?pwd=aHhrNWJIUDFoQXNDdTNzUzBkRTJ0QT09 (password: graphqljs)","creator":{"email":"bwarner@linuxfoundation.org"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-01-28T12:00:00-05:00","end":"2026-01-28T13:00:00-05:00","recurringEventId":"5lk8stcvmomgh5n4o8766f7nt4_R20240228T170000","originalStartTime":{"dateTime":"2026-01-28T12:00:00-05:00","timeZone":"UTC"},"iCalUID":"5lk8stcvmomgh5n4o8766f7nt4_R20240228T170000@google.com","sequence":0,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3540588294915198\"","id":"2pcpvfmbi9720g997rtddc907j_20260128T190000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MnBjcHZmbWJpOTcyMGc5OTdydGRkYzkwN2pfMjAyNjAxMjhUMTkwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-07-21T21:19:53.000Z","updated":"2026-02-05T12:22:27.457Z","summary":"Client Controlled Nullability WG","location":"https://zoom.us/j/95723407712?pwd=ZHhQakxqd1JlTnZJNTJXdlN3UFdQUT09","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-01-28T14:00:00-05:00","end":"2026-01-28T15:00:00-05:00","recurringEventId":"2pcpvfmbi9720g997rtddc907j","originalStartTime":{"dateTime":"2026-01-28T14:00:00-05:00","timeZone":"UTC"},"iCalUID":"2pcpvfmbi9720g997rtddc907j@google.com","sequence":2,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3535776835113822\"","id":"7ev71697ale21b2v56f6475kt0","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=N2V2NzE2OTdhbGUyMWIydjU2ZjY0NzVrdDAgbGludXhmb3VuZGF0aW9uLm9yZ19pazc5dDl1dWoycDMyaTNyMjAzZGd2NW1vOEBn","created":"2026-01-08T16:06:57.000Z","updated":"2026-01-08T16:06:57.556Z","summary":"Composite schemas WG - Weekly 5","description":"The weekly \"secondary\" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing
","location":"https://zoom.us/j/91078840351","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-01-29T12:00:00-05:00","end":"2026-01-29T13:00:00-05:00","iCalUID":"7ev71697ale21b2v56f6475kt0@google.com","sequence":0,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20260129T190000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjAxMjlUMTkwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"Zoom password: httpwg","location":"https://zoom.us/j/92781382543","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-01-29T14:00:00-05:00","end":"2026-01-29T15:00:00-05:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v","originalStartTime":{"dateTime":"2026-01-29T14:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v@google.com","sequence":3,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260202T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjAyMDJUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-02T12:00:00-05:00","end":"2026-02-02T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-02-02T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260205T140000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjAyMDVUMTQwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-05T09:00:00-05:00","end":"2026-02-05T10:00:00-05:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-02-05T09:00:00-05:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587379123870\"","id":"op4181cbuekphecnfnuh384lek_20260205T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjAyMDVUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T12:14:49.561Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-05T12:00:00-05:00","end":"2026-02-05T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-02-05T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260205T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjAyMDVUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-05T13:30:00-05:00","end":"2026-02-05T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-02-05T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260205T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjAyMDVUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-05T13:30:00-05:00","end":"2026-02-05T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-02-05T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260209T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjAyMDlUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-09T12:00:00-05:00","end":"2026-02-09T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-02-09T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20260210T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNjAyMTBUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2026-02-10T11:00:00-05:00","end":"2026-02-10T12:00:00-05:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2026-02-10T11:00:00-05:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587728509598\"","id":"1ae8m39lvqtigc4ao1p670g8il_20260212T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNjAyMTJUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-05T12:17:44.254Z","summary":"GraphQL Community WG","description":"https://zoom.us/j/93104287544 
Meeting password: community

https://github.com/graphql/community-wg/tree/main/agendas

Please be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-12T11:00:00-05:00","end":"2026-02-12T12:00:00-05:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2026-02-12T11:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3541817013494398\"","id":"1ae8m39lvqtigc4ao1p670g8il_20260212T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNjAyMTJUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-12T15:01:46.747Z","summary":"GraphQL Community WG","description":"February event cancelled \n \nhttps://zoom.us/j/93104287544 \nMeeting password: community\n\nhttps://github.com/graphql/community-wg/tree/main/agendas\n\nPlease be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-12T11:00:00-05:00","end":"2026-02-12T12:00:00-05:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2026-02-12T11:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587760961566\"","id":"lvqspfdh491rrdmvl7k1mruqd8_20260212T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=bHZxc3BmZGg0OTFycmRtdmw3azFtcnVxZDhfMjAyNjAyMTJUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:56:35.000Z","updated":"2026-02-05T12:18:00.480Z","summary":"Composite schemas WG - Weekly 2","description":"The weekly \"secondary\" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

https://zoom.us/j/91078840351 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-12T12:00:00-05:00","end":"2026-02-12T13:00:00-05:00","recurringEventId":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000","originalStartTime":{"dateTime":"2026-02-12T12:00:00-05:00","timeZone":"Europe/Berlin"},"iCalUID":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3541522807391806\"","id":"_88p44e1i74p3eba174pkcb9k74q4aba28orkcb9l6d2j0hi660p44da16o_20260212T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=Xzg4cDQ0ZTFpNzRwM2ViYTE3NHBrY2I5azc0cTRhYmEyOG9ya2NiOWw2ZDJqMGhpNjYwcDQ0ZGExNm9fMjAyNjAyMTJUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2026-02-10T22:08:10.000Z","updated":"2026-02-10T22:10:03.695Z","summary":"Golden Path WG","description":"https://github.com/graphql/golden-path-wg/blob/main/agendas/\nZoom password: golden","location":"https://zoom.us/j/97928489872?pwd=WVsGN8orE4qxbDN8stuGlu1yKwTYbT.1","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-12T13:30:00-05:00","end":"2026-02-12T14:30:00-05:00","recurringEventId":"_88p44e1i74p3eba174pkcb9k74q4aba28orkcb9l6d2j0hi660p44da16o","originalStartTime":{"dateTime":"2026-02-12T13:30:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"B2B82927-A93F-494E-BF7F-53E0FF02B5A6","sequence":1,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260216T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjAyMTZUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-16T12:00:00-05:00","end":"2026-02-16T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-02-16T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260219T140000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjAyMTlUMTQwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-19T09:00:00-05:00","end":"2026-02-19T10:00:00-05:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-02-19T09:00:00-05:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588142317950\"","id":"h9erafl4rc1jjor9i6akokm5ec_20260219T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDllcmFmbDRyYzFqam9yOWk2YWtva201ZWNfMjAyNjAyMTlUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:32:03.000Z","updated":"2026-02-05T12:21:11.158Z","summary":"GraphQL Governing Board Meeting","location":"https://graphql.org/community/foundation/join/","creator":{"email":"jburson@linuxfoundation.org"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-19T11:00:00-05:00","end":"2026-02-19T12:00:00-05:00","recurringEventId":"h9erafl4rc1jjor9i6akokm5ec_R20260219T160000","originalStartTime":{"dateTime":"2026-02-19T11:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"h9erafl4rc1jjor9i6akokm5ec_R20260219T160000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} @@ -63,8 +64,8 @@ {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20260226T190000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjAyMjZUMTkwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-02-26T14:00:00-05:00","end":"2026-02-26T15:00:00-05:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2026-02-26T14:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260302T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjAzMDJUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-02T12:00:00-05:00","end":"2026-03-02T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-03-02T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260305T140000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjAzMDVUMTQwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-05T09:00:00-05:00","end":"2026-03-05T10:00:00-05:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-03-05T09:00:00-05:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20260305T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjAzMDVUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-05T12:00:00-05:00","end":"2026-03-05T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-03-05T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260305T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjAzMDVUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-05T13:30:00-05:00","end":"2026-03-05T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-03-05T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20260305T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjAzMDVUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-05T12:00:00-05:00","end":"2026-03-05T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-03-05T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260305T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjAzMDVUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-05T13:30:00-05:00","end":"2026-03-05T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-03-05T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3544388863167614\"","id":"0tn5b7lbiemjevtikcurc2jgo4","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MHRuNWI3bGJpZW1qZXZ0aWtjdXJjMmpnbzQgbGludXhmb3VuZGF0aW9uLm9yZ19pazc5dDl1dWoycDMyaTNyMjAzZGd2NW1vOEBn","created":"2026-02-27T12:13:51.000Z","updated":"2026-02-27T12:13:51.583Z","summary":"Local: GraphQL Hyderabad - Modern AI & Database Developer Meetup featuring GraphQL & SurrealDB","description":"https://guild.host/events/modern-ai-database-developer-82icl7
 
The Modern AI & Database Developer Meetup featuring SurrealDB and GraphQL is a community technical event focused on GraphQL and its role in building modern, scalable, and intelligent applications. The sessions will cover how GraphQL works over HTTP, best practices for designing efficient APIs, and how GraphQL integrates with SurrealDB to support real-time data access and stateful application workflows. The event will also explore how GraphQL enables AI-driven systems through integrations with technologies like LangChain and modern databases, along with an interactive activity-based learning session and opportunities for knowledge sharing and networking among developers and technology professionals.","location":"Hyderabad, Telangana, India","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-07T23:30:00-05:00","end":"2026-03-08T06:30:00-04:00","transparency":"transparent","iCalUID":"0tn5b7lbiemjevtikcurc2jgo4@google.com","sequence":0,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260309T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjAzMDlUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-09T12:00:00-04:00","end":"2026-03-09T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-03-09T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20260310T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNjAzMTBUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2026-03-10T12:00:00-04:00","end":"2026-03-10T13:00:00-04:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2026-03-10T12:00:00-04:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} @@ -72,10 +73,12 @@ {"kind":"calendar#event","etag":"\"3540587760961566\"","id":"lvqspfdh491rrdmvl7k1mruqd8_20260312T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=bHZxc3BmZGg0OTFycmRtdmw3azFtcnVxZDhfMjAyNjAzMTJUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:56:35.000Z","updated":"2026-02-05T12:18:00.480Z","summary":"Composite schemas WG - Weekly 2","description":"The weekly \"secondary\" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

https://zoom.us/j/91078840351 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-12T13:00:00-04:00","end":"2026-03-12T14:00:00-04:00","recurringEventId":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000","originalStartTime":{"dateTime":"2026-03-12T13:00:00-04:00","timeZone":"Europe/Berlin"},"iCalUID":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000@google.com","sequence":1,"eventType":"default"} {"kind":"calendar#event","etag":"\"3541522807391806\"","id":"_88p44e1i74p3eba174pkcb9k74q4aba28orkcb9l6d2j0hi660p44da16o_20260312T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=Xzg4cDQ0ZTFpNzRwM2ViYTE3NHBrY2I5azc0cTRhYmEyOG9ya2NiOWw2ZDJqMGhpNjYwcDQ0ZGExNm9fMjAyNjAzMTJUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2026-02-10T22:08:10.000Z","updated":"2026-02-10T22:10:03.695Z","summary":"Golden Path WG","description":"https://github.com/graphql/golden-path-wg/blob/main/agendas/\nZoom password: golden","location":"https://zoom.us/j/97928489872?pwd=WVsGN8orE4qxbDN8stuGlu1yKwTYbT.1","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-12T13:30:00-04:00","end":"2026-03-12T14:30:00-04:00","recurringEventId":"_88p44e1i74p3eba174pkcb9k74q4aba28orkcb9l6d2j0hi660p44da16o","originalStartTime":{"dateTime":"2026-03-12T13:30:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"B2B82927-A93F-494E-BF7F-53E0FF02B5A6","sequence":1,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260316T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjAzMTZUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-16T12:00:00-04:00","end":"2026-03-16T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-03-16T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3544457527283006\"","id":"4q21ljb0r0du6ob3gs24kc93bi","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NHEyMWxqYjByMGR1Nm9iM2dzMjRrYzkzYmkgbGludXhmb3VuZGF0aW9uLm9yZ19pazc5dDl1dWoycDMyaTNyMjAzZGd2NW1vOEBn","created":"2026-02-27T21:46:03.000Z","updated":"2026-02-27T21:46:03.641Z","summary":"Local: Montreal GraphQL","description":"https://guild.host/events/montreal-graphql-march-che4pr","location":"Montreal, QC, Canada","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-18T18:00:00-04:00","end":"2026-03-18T20:00:00-04:00","transparency":"transparent","iCalUID":"4q21ljb0r0du6ob3gs24kc93bi@google.com","sequence":0,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260319T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjAzMTlUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-19T09:00:00-04:00","end":"2026-03-19T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-03-19T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588142317950\"","id":"h9erafl4rc1jjor9i6akokm5ec_20260319T150000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDllcmFmbDRyYzFqam9yOWk2YWtva201ZWNfMjAyNjAzMTlUMTUwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:32:03.000Z","updated":"2026-02-05T12:21:11.158Z","summary":"GraphQL Governing Board Meeting","location":"https://graphql.org/community/foundation/join/","creator":{"email":"jburson@linuxfoundation.org"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-19T11:00:00-04:00","end":"2026-03-19T12:00:00-04:00","recurringEventId":"h9erafl4rc1jjor9i6akokm5ec_R20260219T160000","originalStartTime":{"dateTime":"2026-03-19T11:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"h9erafl4rc1jjor9i6akokm5ec_R20260219T160000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588074510910\"","id":"kkc5tt01ovrjv8fki1lo31g5hj_20260319T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=a2tjNXR0MDFvdnJqdjhma2kxbG8zMWc1aGpfMjAyNjAzMTlUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:55:37.000Z","updated":"2026-02-05T12:20:37.255Z","summary":"Composite schemas WG - Weekly 3","description":"The weekly \"secondary\" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

https://zoom.us/j/91078840351 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-19T13:00:00-04:00","end":"2026-03-19T14:00:00-04:00","recurringEventId":"kkc5tt01ovrjv8fki1lo31g5hj_R20260219T170000","originalStartTime":{"dateTime":"2026-03-19T13:00:00-04:00","timeZone":"Europe/Berlin"},"iCalUID":"kkc5tt01ovrjv8fki1lo31g5hj_R20260219T170000@google.com","sequence":1,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588119667870\"","id":"2ffd8o32sh77kd3mtccrtg887n_20260319T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MmZmZDhvMzJzaDc3a2QzbXRjY3J0Zzg4N25fMjAyNjAzMTlUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-05-01T19:23:48.000Z","updated":"2026-02-05T12:20:59.833Z","summary":"GraphQL WG - Secondary (EU)","description":"https://zoom.us/j/593263740 
Zoom password: graphqlwg","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-19T13:30:00-04:00","end":"2026-03-19T15:00:00-04:00","recurringEventId":"2ffd8o32sh77kd3mtccrtg887n_R20260219T183000","originalStartTime":{"dateTime":"2026-03-19T13:30:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"2ffd8o32sh77kd3mtccrtg887n_R20260219T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545241675409854\"","id":"6ntubf69hd6g1mmqp1eb4pm626","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=Nm50dWJmNjloZDZnMW1tcXAxZWI0cG02MjYgbGludXhmb3VuZGF0aW9uLm9yZ19pazc5dDl1dWoycDMyaTNyMjAzZGd2NW1vOEBn","created":"2026-03-04T10:40:37.000Z","updated":"2026-03-04T10:40:37.704Z","summary":"Local: GraphQL Ramen","description":"https://www.yelp.com/biz/marufuku-ramen-austin","location":"Austin, United States","creator":{"email":"jem@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-19T20:00:00-04:00","end":"2026-03-19T22:00:00-04:00","transparency":"transparent","iCalUID":"6ntubf69hd6g1mmqp1eb4pm626@google.com","sequence":0,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260323T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjAzMjNUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-23T12:00:00-04:00","end":"2026-03-23T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-03-23T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588274775390\"","id":"5lk8stcvmomgh5n4o8766f7nt4_20260325T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NWxrOHN0Y3Ztb21naDVuNG84NzY2ZjdudDRfMjAyNjAzMjVUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2021-02-02T17:29:31.000Z","updated":"2026-02-05T12:22:17.387Z","summary":"GraphQL.js Working Group meeting","description":"https://zoom.us/j/96871026087?pwd=aHhrNWJIUDFoQXNDdTNzUzBkRTJ0QT09
Password: graphqljs

Please note these meetings are recorded and posted to https://youtube.graphql.org

To join, please open a PR and add yourself to the meeting agenda: https://github.com/graphql/graphql-js-wg/tree/main/agendas

You must have completed the (free) GraphQL Specification Membership Agreement prior to joining.","location":"https://github.com/graphql/graphql-js-wg/tree/main/agendas","creator":{"email":"bwarner@linuxfoundation.org"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-25T13:00:00-04:00","end":"2026-03-25T14:00:00-04:00","recurringEventId":"5lk8stcvmomgh5n4o8766f7nt4_R20260225T170000","originalStartTime":{"dateTime":"2026-03-25T13:00:00-04:00","timeZone":"UTC"},"iCalUID":"5lk8stcvmomgh5n4o8766f7nt4_R20260225T170000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588394053022\"","id":"4igp67o2j2nkso49c1d6nbv040_20260326T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NGlncDY3bzJqMm5rc280OWMxZDZuYnYwNDBfMjAyNjAzMjZUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-04-15T10:29:33.000Z","updated":"2026-02-05T12:23:17.026Z","summary":"GraphQL OTel WG","description":"https://zoom.us/j/93594710848?pwd=meEB8rd5g69r5DF8zFaL8VIWO2Il1v.1 
Zoom password: otel
 
https://github.com/graphql/otel-wg","location":"https://github.com/graphql/otel-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-26T13:00:00-04:00","end":"2026-03-26T14:00:00-04:00","recurringEventId":"4igp67o2j2nkso49c1d6nbv040_R20260226T180000","originalStartTime":{"dateTime":"2026-03-26T13:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"4igp67o2j2nkso49c1d6nbv040_R20260226T180000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} @@ -84,14 +87,15 @@ {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20260326T180000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjAzMjZUMTgwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-26T14:00:00-04:00","end":"2026-03-26T15:00:00-04:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2026-03-26T14:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260330T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjAzMzBUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-03-30T12:00:00-04:00","end":"2026-03-30T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-03-30T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260402T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjA0MDJUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-02T09:00:00-04:00","end":"2026-04-02T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-04-02T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20260402T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjA0MDJUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-02T12:00:00-04:00","end":"2026-04-02T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-04-02T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260402T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjA0MDJUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-02T13:30:00-04:00","end":"2026-04-02T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-04-02T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20260402T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjA0MDJUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-02T12:00:00-04:00","end":"2026-04-02T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-04-02T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260402T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjA0MDJUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-02T13:30:00-04:00","end":"2026-04-02T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-04-02T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260406T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA0MDZUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-06T12:00:00-04:00","end":"2026-04-06T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-04-06T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3541817013494398\"","id":"1ae8m39lvqtigc4ao1p670g8il_20260409T150000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNjA0MDlUMTUwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-12T15:01:46.747Z","summary":"GraphQL Community WG","description":"https://zoom.us/j/93104287544 
Meeting password: community

https://github.com/graphql/community-wg/tree/main/agendas

Please be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-09T11:00:00-04:00","end":"2026-04-09T12:00:00-04:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2026-04-09T11:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587760961566\"","id":"lvqspfdh491rrdmvl7k1mruqd8_20260409T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=bHZxc3BmZGg0OTFycmRtdmw3azFtcnVxZDhfMjAyNjA0MDlUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:56:35.000Z","updated":"2026-02-05T12:18:00.480Z","summary":"Composite schemas WG - Weekly 2","description":"The weekly \"secondary\" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

https://zoom.us/j/91078840351 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-09T12:00:00-04:00","end":"2026-04-09T13:00:00-04:00","recurringEventId":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000","originalStartTime":{"dateTime":"2026-04-09T12:00:00-04:00","timeZone":"Europe/Berlin"},"iCalUID":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000@google.com","sequence":1,"eventType":"default"} {"kind":"calendar#event","etag":"\"3541522807391806\"","id":"_88p44e1i74p3eba174pkcb9k74q4aba28orkcb9l6d2j0hi660p44da16o_20260409T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=Xzg4cDQ0ZTFpNzRwM2ViYTE3NHBrY2I5azc0cTRhYmEyOG9ya2NiOWw2ZDJqMGhpNjYwcDQ0ZGExNm9fMjAyNjA0MDlUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2026-02-10T22:08:10.000Z","updated":"2026-02-10T22:10:03.695Z","summary":"Golden Path WG","description":"https://github.com/graphql/golden-path-wg/blob/main/agendas/\nZoom password: golden","location":"https://zoom.us/j/97928489872?pwd=WVsGN8orE4qxbDN8stuGlu1yKwTYbT.1","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-09T13:30:00-04:00","end":"2026-04-09T14:30:00-04:00","recurringEventId":"_88p44e1i74p3eba174pkcb9k74q4aba28orkcb9l6d2j0hi660p44da16o","originalStartTime":{"dateTime":"2026-04-09T13:30:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"B2B82927-A93F-494E-BF7F-53E0FF02B5A6","sequence":1,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260413T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA0MTNUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-13T12:00:00-04:00","end":"2026-04-13T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-04-13T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20260414T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNjA0MTRUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2026-04-14T12:00:00-04:00","end":"2026-04-14T13:00:00-04:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2026-04-14T12:00:00-04:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545456979851646\"","id":"6t3nnu61urj1bnql4ofcn2ch3s","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NnQzbm51NjF1cmoxYm5xbDRvZmNuMmNoM3MgbGludXhmb3VuZGF0aW9uLm9yZ19pazc5dDl1dWoycDMyaTNyMjAzZGd2NW1vOEBn","created":"2026-03-05T16:34:49.000Z","updated":"2026-03-05T16:34:49.925Z","summary":"Local: London GraphQL (Tentative)","description":"https://guild.host/london-graphql/","location":"London, UK","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-14T13:00:00-04:00","end":"2026-04-14T16:00:00-04:00","transparency":"transparent","iCalUID":"6t3nnu61urj1bnql4ofcn2ch3s@google.com","sequence":0,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260416T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjA0MTZUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-16T09:00:00-04:00","end":"2026-04-16T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-04-16T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588142317950\"","id":"h9erafl4rc1jjor9i6akokm5ec_20260416T150000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDllcmFmbDRyYzFqam9yOWk2YWtva201ZWNfMjAyNjA0MTZUMTUwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:32:03.000Z","updated":"2026-02-05T12:21:11.158Z","summary":"GraphQL Governing Board Meeting","location":"https://graphql.org/community/foundation/join/","creator":{"email":"jburson@linuxfoundation.org"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-16T11:00:00-04:00","end":"2026-04-16T12:00:00-04:00","recurringEventId":"h9erafl4rc1jjor9i6akokm5ec_R20260219T160000","originalStartTime":{"dateTime":"2026-04-16T11:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"h9erafl4rc1jjor9i6akokm5ec_R20260219T160000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588074510910\"","id":"kkc5tt01ovrjv8fki1lo31g5hj_20260416T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=a2tjNXR0MDFvdnJqdjhma2kxbG8zMWc1aGpfMjAyNjA0MTZUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:55:37.000Z","updated":"2026-02-05T12:20:37.255Z","summary":"Composite schemas WG - Weekly 3","description":"The weekly \"secondary\" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

https://zoom.us/j/91078840351 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-16T12:00:00-04:00","end":"2026-04-16T13:00:00-04:00","recurringEventId":"kkc5tt01ovrjv8fki1lo31g5hj_R20260219T170000","originalStartTime":{"dateTime":"2026-04-16T12:00:00-04:00","timeZone":"Europe/Berlin"},"iCalUID":"kkc5tt01ovrjv8fki1lo31g5hj_R20260219T170000@google.com","sequence":1,"eventType":"default"} @@ -103,12 +107,12 @@ {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260427T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA0MjdUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-27T12:00:00-04:00","end":"2026-04-27T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-04-27T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588274775390\"","id":"5lk8stcvmomgh5n4o8766f7nt4_20260429T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NWxrOHN0Y3Ztb21naDVuNG84NzY2ZjdudDRfMjAyNjA0MjlUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2021-02-02T17:29:31.000Z","updated":"2026-02-05T12:22:17.387Z","summary":"GraphQL.js Working Group meeting","description":"https://zoom.us/j/96871026087?pwd=aHhrNWJIUDFoQXNDdTNzUzBkRTJ0QT09
Password: graphqljs

Please note these meetings are recorded and posted to https://youtube.graphql.org

To join, please open a PR and add yourself to the meeting agenda: https://github.com/graphql/graphql-js-wg/tree/main/agendas

You must have completed the (free) GraphQL Specification Membership Agreement prior to joining.","location":"https://github.com/graphql/graphql-js-wg/tree/main/agendas","creator":{"email":"bwarner@linuxfoundation.org"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-29T13:00:00-04:00","end":"2026-04-29T14:00:00-04:00","recurringEventId":"5lk8stcvmomgh5n4o8766f7nt4_R20260225T170000","originalStartTime":{"dateTime":"2026-04-29T13:00:00-04:00","timeZone":"UTC"},"iCalUID":"5lk8stcvmomgh5n4o8766f7nt4_R20260225T170000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260430T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjA0MzBUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-30T09:00:00-04:00","end":"2026-04-30T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-04-30T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545437273764382\"","id":"77vqhgug2e1d0sc3vf42nihvbr","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=Nzd2cWhndWcyZTFkMHNjM3ZmNDJuaWh2YnIgbGludXhmb3VuZGF0aW9uLm9yZ19pazc5dDl1dWoycDMyaTNyMjAzZGd2NW1vOEBn","created":"2026-03-05T13:50:36.000Z","updated":"2026-03-05T13:50:36.882Z","summary":"Composite schemas WG - Weekly 5","description":"The weekly "secondary" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

https://zoom.us/j/91078840351 
Meeting password is "composite"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-30T12:00:00-04:00","end":"2026-04-30T13:00:00-04:00","iCalUID":"77vqhgug2e1d0sc3vf42nihvbr@google.com","sequence":0,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20260430T180000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjA0MzBUMTgwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-04-30T14:00:00-04:00","end":"2026-04-30T15:00:00-04:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2026-04-30T14:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260504T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA1MDRUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-05-04T12:00:00-04:00","end":"2026-05-04T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-05-04T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588934973886\"","id":"0rl4f1dco331f22a30iacgm3an","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MHJsNGYxZGNvMzMxZjIyYTMwaWFjZ20zYW4gbGludXhmb3VuZGF0aW9uLm9yZ19pazc5dDl1dWoycDMyaTNyMjAzZGd2NW1vOEBn","created":"2026-02-05T12:27:10.000Z","updated":"2026-02-05T12:27:47.486Z","summary":"GraphQLConf26 Day 1","description":"https://graphql.org/conf/2026/","location":"Menlo Park, California, United States","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-05-06T11:30:00-04:00","end":"2026-05-06T20:30:00-04:00","iCalUID":"0rl4f1dco331f22a30iacgm3an@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588903123646\"","id":"14eimfkcc7ar27kdpbpse4v00b","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MTRlaW1ma2NjN2FyMjdrZHBicHNlNHYwMGIgbGludXhmb3VuZGF0aW9uLm9yZ19pazc5dDl1dWoycDMyaTNyMjAzZGd2NW1vOEBn","created":"2026-02-05T12:27:31.000Z","updated":"2026-02-05T12:27:31.561Z","summary":"GraphQLConf26 Day 2","description":"https://graphql.org/conf/2026/","location":"Menlo Park, California, United States","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-05-07T11:30:00-04:00","end":"2026-05-07T20:30:00-04:00","iCalUID":"14eimfkcc7ar27kdpbpse4v00b@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20260507T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjA1MDdUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-05-07T12:00:00-04:00","end":"2026-05-07T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-05-07T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260507T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjA1MDdUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-05-07T13:30:00-04:00","end":"2026-05-07T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-05-07T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545456339154078\"","id":"2i1i0f1n165av8pj0f8sb5bnpo","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MmkxaTBmMW4xNjVhdjhwajBmOHNiNWJucG8gbGludXhmb3VuZGF0aW9uLm9yZ19pazc5dDl1dWoycDMyaTNyMjAzZGd2NW1vOEBn","created":"2026-03-05T16:29:29.000Z","updated":"2026-03-05T16:29:29.577Z","summary":"GraphQLConf WG Day","description":"https://graphql.org/conf/2026/wg-day/","location":"MPK 21, 1 Meta Wy building 21, Menlo Park, CA 94025, USA","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-05-08T12:30:00-04:00","end":"2026-05-08T19:30:00-04:00","transparency":"transparent","iCalUID":"2i1i0f1n165av8pj0f8sb5bnpo@google.com","sequence":0,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260511T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA1MTFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-05-11T12:00:00-04:00","end":"2026-05-11T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-05-11T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20260512T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNjA1MTJUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2026-05-12T12:00:00-04:00","end":"2026-05-12T13:00:00-04:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2026-05-12T12:00:00-04:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260514T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjA1MTRUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-05-14T09:00:00-04:00","end":"2026-05-14T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-05-14T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} @@ -127,8 +131,8 @@ {"kind":"calendar#event","etag":"\"3540588538430046\"","id":"56uko3hh68be4q73tttdicg7l2_20260528T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NTZ1a28zaGg2OGJlNHE3M3R0dGRpY2c3bDJfMjAyNjA1MjhUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-10-16T15:10:58.000Z","updated":"2026-02-05T12:24:29.215Z","summary":"GraphQL AI Working Group","description":"Sign up and view agenda at https://github.com/graphql/ai-wg

https://zoom.us/j/92302442188
Zoom password: aiwg","location":"https://github.com/graphql/ai-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-05-28T13:30:00-04:00","end":"2026-05-28T14:30:00-04:00","recurringEventId":"56uko3hh68be4q73tttdicg7l2_R20260226T183000","originalStartTime":{"dateTime":"2026-05-28T13:30:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"56uko3hh68be4q73tttdicg7l2_R20260226T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20260528T180000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjA1MjhUMTgwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-05-28T14:00:00-04:00","end":"2026-05-28T15:00:00-04:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2026-05-28T14:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260601T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA2MDFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-06-01T12:00:00-04:00","end":"2026-06-01T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-06-01T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20260604T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjA2MDRUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-06-04T12:00:00-04:00","end":"2026-06-04T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-06-04T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260604T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjA2MDRUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-06-04T13:30:00-04:00","end":"2026-06-04T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-06-04T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20260604T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjA2MDRUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-06-04T12:00:00-04:00","end":"2026-06-04T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-06-04T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260604T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjA2MDRUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-06-04T13:30:00-04:00","end":"2026-06-04T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-06-04T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260608T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA2MDhUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-06-08T12:00:00-04:00","end":"2026-06-08T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-06-08T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20260609T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNjA2MDlUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2026-06-09T12:00:00-04:00","end":"2026-06-09T13:00:00-04:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2026-06-09T12:00:00-04:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260611T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjA2MTFUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-06-11T09:00:00-04:00","end":"2026-06-11T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-06-11T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} @@ -147,8 +151,8 @@ {"kind":"calendar#event","etag":"\"3540588538430046\"","id":"56uko3hh68be4q73tttdicg7l2_20260625T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NTZ1a28zaGg2OGJlNHE3M3R0dGRpY2c3bDJfMjAyNjA2MjVUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-10-16T15:10:58.000Z","updated":"2026-02-05T12:24:29.215Z","summary":"GraphQL AI Working Group","description":"Sign up and view agenda at https://github.com/graphql/ai-wg

https://zoom.us/j/92302442188
Zoom password: aiwg","location":"https://github.com/graphql/ai-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-06-25T13:30:00-04:00","end":"2026-06-25T14:30:00-04:00","recurringEventId":"56uko3hh68be4q73tttdicg7l2_R20260226T183000","originalStartTime":{"dateTime":"2026-06-25T13:30:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"56uko3hh68be4q73tttdicg7l2_R20260226T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20260625T180000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjA2MjVUMTgwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-06-25T14:00:00-04:00","end":"2026-06-25T15:00:00-04:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2026-06-25T14:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260629T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA2MjlUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-06-29T12:00:00-04:00","end":"2026-06-29T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-06-29T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20260702T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjA3MDJUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-07-02T12:00:00-04:00","end":"2026-07-02T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-07-02T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260702T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjA3MDJUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-07-02T13:30:00-04:00","end":"2026-07-02T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-07-02T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20260702T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjA3MDJUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-07-02T12:00:00-04:00","end":"2026-07-02T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-07-02T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260702T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjA3MDJUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-07-02T13:30:00-04:00","end":"2026-07-02T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-07-02T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260706T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA3MDZUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-07-06T12:00:00-04:00","end":"2026-07-06T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-07-06T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260709T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjA3MDlUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-07-09T09:00:00-04:00","end":"2026-07-09T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-07-09T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} {"kind":"calendar#event","etag":"\"3541817013494398\"","id":"1ae8m39lvqtigc4ao1p670g8il_20260709T150000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNjA3MDlUMTUwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-12T15:01:46.747Z","summary":"GraphQL Community WG","description":"https://zoom.us/j/93104287544 
Meeting password: community

https://github.com/graphql/community-wg/tree/main/agendas

Please be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-07-09T11:00:00-04:00","end":"2026-07-09T12:00:00-04:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2026-07-09T11:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} @@ -169,8 +173,8 @@ {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20260730T180000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjA3MzBUMTgwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-07-30T14:00:00-04:00","end":"2026-07-30T15:00:00-04:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2026-07-30T14:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260803T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA4MDNUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-08-03T12:00:00-04:00","end":"2026-08-03T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-08-03T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260806T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjA4MDZUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-08-06T09:00:00-04:00","end":"2026-08-06T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-08-06T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20260806T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjA4MDZUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-08-06T12:00:00-04:00","end":"2026-08-06T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-08-06T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260806T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjA4MDZUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-08-06T13:30:00-04:00","end":"2026-08-06T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-08-06T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20260806T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjA4MDZUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-08-06T12:00:00-04:00","end":"2026-08-06T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-08-06T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260806T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjA4MDZUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-08-06T13:30:00-04:00","end":"2026-08-06T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-08-06T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260810T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA4MTBUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-08-10T12:00:00-04:00","end":"2026-08-10T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-08-10T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20260811T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNjA4MTFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2026-08-11T12:00:00-04:00","end":"2026-08-11T13:00:00-04:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2026-08-11T12:00:00-04:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3541817013494398\"","id":"1ae8m39lvqtigc4ao1p670g8il_20260813T150000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNjA4MTNUMTUwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-12T15:01:46.747Z","summary":"GraphQL Community WG","description":"https://zoom.us/j/93104287544 
Meeting password: community

https://github.com/graphql/community-wg/tree/main/agendas

Please be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-08-13T11:00:00-04:00","end":"2026-08-13T12:00:00-04:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2026-08-13T11:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} @@ -189,8 +193,8 @@ {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20260827T180000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjA4MjdUMTgwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-08-27T14:00:00-04:00","end":"2026-08-27T15:00:00-04:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2026-08-27T14:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260831T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA4MzFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-08-31T12:00:00-04:00","end":"2026-08-31T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-08-31T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20260903T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjA5MDNUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-09-03T09:00:00-04:00","end":"2026-09-03T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-09-03T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20260903T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjA5MDNUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-09-03T12:00:00-04:00","end":"2026-09-03T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-09-03T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260903T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjA5MDNUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-09-03T13:30:00-04:00","end":"2026-09-03T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-09-03T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20260903T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjA5MDNUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-09-03T12:00:00-04:00","end":"2026-09-03T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-09-03T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20260903T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjA5MDNUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-09-03T13:30:00-04:00","end":"2026-09-03T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-09-03T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260907T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA5MDdUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-09-07T12:00:00-04:00","end":"2026-09-07T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-09-07T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20260908T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNjA5MDhUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2026-09-08T12:00:00-04:00","end":"2026-09-08T13:00:00-04:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2026-09-08T12:00:00-04:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3541817013494398\"","id":"1ae8m39lvqtigc4ao1p670g8il_20260910T150000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNjA5MTBUMTUwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-12T15:01:46.747Z","summary":"GraphQL Community WG","description":"https://zoom.us/j/93104287544 
Meeting password: community

https://github.com/graphql/community-wg/tree/main/agendas

Please be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-09-10T11:00:00-04:00","end":"2026-09-10T12:00:00-04:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2026-09-10T11:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} @@ -209,8 +213,8 @@ {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20260928T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjA5MjhUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-09-28T12:00:00-04:00","end":"2026-09-28T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-09-28T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588274775390\"","id":"5lk8stcvmomgh5n4o8766f7nt4_20260930T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NWxrOHN0Y3Ztb21naDVuNG84NzY2ZjdudDRfMjAyNjA5MzBUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2021-02-02T17:29:31.000Z","updated":"2026-02-05T12:22:17.387Z","summary":"GraphQL.js Working Group meeting","description":"https://zoom.us/j/96871026087?pwd=aHhrNWJIUDFoQXNDdTNzUzBkRTJ0QT09
Password: graphqljs

Please note these meetings are recorded and posted to https://youtube.graphql.org

To join, please open a PR and add yourself to the meeting agenda: https://github.com/graphql/graphql-js-wg/tree/main/agendas

You must have completed the (free) GraphQL Specification Membership Agreement prior to joining.","location":"https://github.com/graphql/graphql-js-wg/tree/main/agendas","creator":{"email":"bwarner@linuxfoundation.org"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-09-30T13:00:00-04:00","end":"2026-09-30T14:00:00-04:00","recurringEventId":"5lk8stcvmomgh5n4o8766f7nt4_R20260225T170000","originalStartTime":{"dateTime":"2026-09-30T13:00:00-04:00","timeZone":"UTC"},"iCalUID":"5lk8stcvmomgh5n4o8766f7nt4_R20260225T170000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20261001T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjEwMDFUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-10-01T09:00:00-04:00","end":"2026-10-01T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-10-01T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20261001T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjEwMDFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-10-01T12:00:00-04:00","end":"2026-10-01T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-10-01T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20261001T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjEwMDFUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-10-01T13:30:00-04:00","end":"2026-10-01T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-10-01T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20261001T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjEwMDFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-10-01T12:00:00-04:00","end":"2026-10-01T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-10-01T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20261001T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjEwMDFUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-10-01T13:30:00-04:00","end":"2026-10-01T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-10-01T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20261005T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjEwMDVUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-10-05T12:00:00-04:00","end":"2026-10-05T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-10-05T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3541817013494398\"","id":"1ae8m39lvqtigc4ao1p670g8il_20261008T150000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNjEwMDhUMTUwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-12T15:01:46.747Z","summary":"GraphQL Community WG","description":"https://zoom.us/j/93104287544 
Meeting password: community

https://github.com/graphql/community-wg/tree/main/agendas

Please be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-10-08T11:00:00-04:00","end":"2026-10-08T12:00:00-04:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2026-10-08T11:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587760961566\"","id":"lvqspfdh491rrdmvl7k1mruqd8_20261008T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=bHZxc3BmZGg0OTFycmRtdmw3azFtcnVxZDhfMjAyNjEwMDhUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:56:35.000Z","updated":"2026-02-05T12:18:00.480Z","summary":"Composite schemas WG - Weekly 2","description":"The weekly \"secondary\" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

https://zoom.us/j/91078840351 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-10-08T12:00:00-04:00","end":"2026-10-08T13:00:00-04:00","recurringEventId":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000","originalStartTime":{"dateTime":"2026-10-08T12:00:00-04:00","timeZone":"Europe/Berlin"},"iCalUID":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000@google.com","sequence":1,"eventType":"default"} @@ -230,8 +234,8 @@ {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20261029T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjEwMjlUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-10-29T09:00:00-04:00","end":"2026-10-29T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-10-29T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20261029T180000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjEwMjlUMTgwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-10-29T14:00:00-04:00","end":"2026-10-29T15:00:00-04:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2026-10-29T14:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20261102T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjExMDJUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-11-02T12:00:00-05:00","end":"2026-11-02T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-11-02T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20261105T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjExMDVUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-11-05T12:00:00-05:00","end":"2026-11-05T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-11-05T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20261105T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjExMDVUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-11-05T13:30:00-05:00","end":"2026-11-05T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-11-05T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20261105T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjExMDVUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-11-05T12:00:00-05:00","end":"2026-11-05T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-11-05T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20261105T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjExMDVUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-11-05T13:30:00-05:00","end":"2026-11-05T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-11-05T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20261109T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjExMDlUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-11-09T12:00:00-05:00","end":"2026-11-09T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-11-09T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20261110T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNjExMTBUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2026-11-10T11:00:00-05:00","end":"2026-11-10T12:00:00-05:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2026-11-10T11:00:00-05:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20261112T140000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjExMTJUMTQwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-11-12T09:00:00-05:00","end":"2026-11-12T10:00:00-05:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-11-12T09:00:00-05:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} @@ -250,8 +254,8 @@ {"kind":"calendar#event","etag":"\"3540588538430046\"","id":"56uko3hh68be4q73tttdicg7l2_20261126T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NTZ1a28zaGg2OGJlNHE3M3R0dGRpY2c3bDJfMjAyNjExMjZUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-10-16T15:10:58.000Z","updated":"2026-02-05T12:24:29.215Z","summary":"GraphQL AI Working Group","description":"Sign up and view agenda at https://github.com/graphql/ai-wg

https://zoom.us/j/92302442188
Zoom password: aiwg","location":"https://github.com/graphql/ai-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-11-26T13:30:00-05:00","end":"2026-11-26T14:30:00-05:00","recurringEventId":"56uko3hh68be4q73tttdicg7l2_R20260226T183000","originalStartTime":{"dateTime":"2026-11-26T13:30:00-05:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"56uko3hh68be4q73tttdicg7l2_R20260226T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20261126T190000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjExMjZUMTkwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-11-26T14:00:00-05:00","end":"2026-11-26T15:00:00-05:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2026-11-26T14:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20261130T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjExMzBUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-11-30T12:00:00-05:00","end":"2026-11-30T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-11-30T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20261203T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjEyMDNUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-12-03T12:00:00-05:00","end":"2026-12-03T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-12-03T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20261203T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjEyMDNUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-12-03T13:30:00-05:00","end":"2026-12-03T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-12-03T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20261203T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNjEyMDNUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-12-03T12:00:00-05:00","end":"2026-12-03T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2026-12-03T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20261203T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNjEyMDNUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-12-03T13:30:00-05:00","end":"2026-12-03T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2026-12-03T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20261207T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNjEyMDdUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-12-07T12:00:00-05:00","end":"2026-12-07T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2026-12-07T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20261208T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNjEyMDhUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2026-12-08T11:00:00-05:00","end":"2026-12-08T12:00:00-05:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2026-12-08T11:00:00-05:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20261210T140000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNjEyMTBUMTQwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-12-10T09:00:00-05:00","end":"2026-12-10T10:00:00-05:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2026-12-10T09:00:00-05:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} @@ -272,8 +276,8 @@ {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20261231T190000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNjEyMzFUMTkwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2026-12-31T14:00:00-05:00","end":"2026-12-31T15:00:00-05:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2026-12-31T14:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270104T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzAxMDRUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-01-04T12:00:00-05:00","end":"2027-01-04T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-01-04T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20270107T140000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNzAxMDdUMTQwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-01-07T09:00:00-05:00","end":"2027-01-07T10:00:00-05:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2027-01-07T09:00:00-05:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20270107T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzAxMDdUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-01-07T12:00:00-05:00","end":"2027-01-07T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-01-07T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270107T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzAxMDdUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-01-07T13:30:00-05:00","end":"2027-01-07T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-01-07T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20270107T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzAxMDdUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-01-07T12:00:00-05:00","end":"2027-01-07T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-01-07T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270107T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzAxMDdUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-01-07T13:30:00-05:00","end":"2027-01-07T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-01-07T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270111T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzAxMTFUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-01-11T12:00:00-05:00","end":"2027-01-11T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-01-11T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20270112T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNzAxMTJUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2027-01-12T11:00:00-05:00","end":"2027-01-12T12:00:00-05:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2027-01-12T11:00:00-05:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3541817013494398\"","id":"1ae8m39lvqtigc4ao1p670g8il_20270114T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNzAxMTRUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-12T15:01:46.747Z","summary":"GraphQL Community WG","description":"https://zoom.us/j/93104287544 
Meeting password: community

https://github.com/graphql/community-wg/tree/main/agendas

Please be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-01-14T11:00:00-05:00","end":"2027-01-14T12:00:00-05:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2027-01-14T11:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} @@ -292,8 +296,8 @@ {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20270128T190000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNzAxMjhUMTkwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-01-28T14:00:00-05:00","end":"2027-01-28T15:00:00-05:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2027-01-28T14:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270201T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzAyMDFUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-02-01T12:00:00-05:00","end":"2027-02-01T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-02-01T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20270204T140000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNzAyMDRUMTQwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-02-04T09:00:00-05:00","end":"2027-02-04T10:00:00-05:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2027-02-04T09:00:00-05:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20270204T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzAyMDRUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-02-04T12:00:00-05:00","end":"2027-02-04T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-02-04T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270204T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzAyMDRUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-02-04T13:30:00-05:00","end":"2027-02-04T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-02-04T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20270204T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzAyMDRUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-02-04T12:00:00-05:00","end":"2027-02-04T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-02-04T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270204T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzAyMDRUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-02-04T13:30:00-05:00","end":"2027-02-04T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-02-04T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270208T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzAyMDhUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-02-08T12:00:00-05:00","end":"2027-02-08T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-02-08T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20270209T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNzAyMDlUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2027-02-09T11:00:00-05:00","end":"2027-02-09T12:00:00-05:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2027-02-09T11:00:00-05:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3541817013494398\"","id":"1ae8m39lvqtigc4ao1p670g8il_20270211T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNzAyMTFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-12T15:01:46.747Z","summary":"GraphQL Community WG","description":"https://zoom.us/j/93104287544 
Meeting password: community

https://github.com/graphql/community-wg/tree/main/agendas

Please be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-02-11T11:00:00-05:00","end":"2027-02-11T12:00:00-05:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2027-02-11T11:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} @@ -312,8 +316,8 @@ {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20270225T190000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNzAyMjVUMTkwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-02-25T14:00:00-05:00","end":"2027-02-25T15:00:00-05:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2027-02-25T14:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270301T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzAzMDFUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-03-01T12:00:00-05:00","end":"2027-03-01T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-03-01T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20270304T140000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNzAzMDRUMTQwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-03-04T09:00:00-05:00","end":"2027-03-04T10:00:00-05:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2027-03-04T09:00:00-05:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20270304T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzAzMDRUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-03-04T12:00:00-05:00","end":"2027-03-04T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-03-04T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270304T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzAzMDRUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-03-04T13:30:00-05:00","end":"2027-03-04T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-03-04T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20270304T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzAzMDRUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-03-04T12:00:00-05:00","end":"2027-03-04T13:00:00-05:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-03-04T12:00:00-05:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270304T183000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzAzMDRUMTgzMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-03-04T13:30:00-05:00","end":"2027-03-04T15:00:00-05:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-03-04T13:30:00-05:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270308T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzAzMDhUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-03-08T12:00:00-05:00","end":"2027-03-08T13:00:00-05:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-03-08T12:00:00-05:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20270309T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNzAzMDlUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2027-03-09T11:00:00-05:00","end":"2027-03-09T12:00:00-05:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2027-03-09T11:00:00-05:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3541817013494398\"","id":"1ae8m39lvqtigc4ao1p670g8il_20270311T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNzAzMTFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-12T15:01:46.747Z","summary":"GraphQL Community WG","description":"https://zoom.us/j/93104287544 
Meeting password: community

https://github.com/graphql/community-wg/tree/main/agendas

Please be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-03-11T11:00:00-05:00","end":"2027-03-11T12:00:00-05:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2027-03-11T11:00:00-05:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} @@ -332,8 +336,8 @@ {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270329T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzAzMjlUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-03-29T12:00:00-04:00","end":"2027-03-29T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-03-29T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588274775390\"","id":"5lk8stcvmomgh5n4o8766f7nt4_20270331T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NWxrOHN0Y3Ztb21naDVuNG84NzY2ZjdudDRfMjAyNzAzMzFUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2021-02-02T17:29:31.000Z","updated":"2026-02-05T12:22:17.387Z","summary":"GraphQL.js Working Group meeting","description":"https://zoom.us/j/96871026087?pwd=aHhrNWJIUDFoQXNDdTNzUzBkRTJ0QT09
Password: graphqljs

Please note these meetings are recorded and posted to https://youtube.graphql.org

To join, please open a PR and add yourself to the meeting agenda: https://github.com/graphql/graphql-js-wg/tree/main/agendas

You must have completed the (free) GraphQL Specification Membership Agreement prior to joining.","location":"https://github.com/graphql/graphql-js-wg/tree/main/agendas","creator":{"email":"bwarner@linuxfoundation.org"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-03-31T13:00:00-04:00","end":"2027-03-31T14:00:00-04:00","recurringEventId":"5lk8stcvmomgh5n4o8766f7nt4_R20260225T170000","originalStartTime":{"dateTime":"2027-03-31T13:00:00-04:00","timeZone":"UTC"},"iCalUID":"5lk8stcvmomgh5n4o8766f7nt4_R20260225T170000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20270401T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNzA0MDFUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-04-01T09:00:00-04:00","end":"2027-04-01T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2027-04-01T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20270401T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzA0MDFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-04-01T12:00:00-04:00","end":"2027-04-01T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-04-01T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270401T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzA0MDFUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-04-01T13:30:00-04:00","end":"2027-04-01T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-04-01T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20270401T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzA0MDFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-04-01T12:00:00-04:00","end":"2027-04-01T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-04-01T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270401T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzA0MDFUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-04-01T13:30:00-04:00","end":"2027-04-01T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-04-01T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270405T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzA0MDVUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-04-05T12:00:00-04:00","end":"2027-04-05T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-04-05T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3541817013494398\"","id":"1ae8m39lvqtigc4ao1p670g8il_20270408T150000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNzA0MDhUMTUwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-12T15:01:46.747Z","summary":"GraphQL Community WG","description":"https://zoom.us/j/93104287544 
Meeting password: community

https://github.com/graphql/community-wg/tree/main/agendas

Please be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-04-08T11:00:00-04:00","end":"2027-04-08T12:00:00-04:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2027-04-08T11:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587760961566\"","id":"lvqspfdh491rrdmvl7k1mruqd8_20270408T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=bHZxc3BmZGg0OTFycmRtdmw3azFtcnVxZDhfMjAyNzA0MDhUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:56:35.000Z","updated":"2026-02-05T12:18:00.480Z","summary":"Composite schemas WG - Weekly 2","description":"The weekly \"secondary\" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

https://zoom.us/j/91078840351 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-04-08T12:00:00-04:00","end":"2027-04-08T13:00:00-04:00","recurringEventId":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000","originalStartTime":{"dateTime":"2027-04-08T12:00:00-04:00","timeZone":"Europe/Berlin"},"iCalUID":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000@google.com","sequence":1,"eventType":"default"} @@ -353,8 +357,8 @@ {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20270429T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNzA0MjlUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-04-29T09:00:00-04:00","end":"2027-04-29T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2027-04-29T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20270429T180000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNzA0MjlUMTgwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-04-29T14:00:00-04:00","end":"2027-04-29T15:00:00-04:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2027-04-29T14:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270503T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzA1MDNUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-05-03T12:00:00-04:00","end":"2027-05-03T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-05-03T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20270506T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzA1MDZUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-05-06T12:00:00-04:00","end":"2027-05-06T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-05-06T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270506T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzA1MDZUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-05-06T13:30:00-04:00","end":"2027-05-06T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-05-06T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20270506T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzA1MDZUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-05-06T12:00:00-04:00","end":"2027-05-06T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-05-06T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270506T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzA1MDZUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-05-06T13:30:00-04:00","end":"2027-05-06T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-05-06T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270510T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzA1MTBUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-05-10T12:00:00-04:00","end":"2027-05-10T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-05-10T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20270511T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNzA1MTFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2027-05-11T12:00:00-04:00","end":"2027-05-11T13:00:00-04:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2027-05-11T12:00:00-04:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20270513T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNzA1MTNUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-05-13T09:00:00-04:00","end":"2027-05-13T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2027-05-13T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} @@ -373,8 +377,8 @@ {"kind":"calendar#event","etag":"\"3540588538430046\"","id":"56uko3hh68be4q73tttdicg7l2_20270527T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NTZ1a28zaGg2OGJlNHE3M3R0dGRpY2c3bDJfMjAyNzA1MjdUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-10-16T15:10:58.000Z","updated":"2026-02-05T12:24:29.215Z","summary":"GraphQL AI Working Group","description":"Sign up and view agenda at https://github.com/graphql/ai-wg

https://zoom.us/j/92302442188
Zoom password: aiwg","location":"https://github.com/graphql/ai-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-05-27T13:30:00-04:00","end":"2027-05-27T14:30:00-04:00","recurringEventId":"56uko3hh68be4q73tttdicg7l2_R20260226T183000","originalStartTime":{"dateTime":"2027-05-27T13:30:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"56uko3hh68be4q73tttdicg7l2_R20260226T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20270527T180000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNzA1MjdUMTgwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-05-27T14:00:00-04:00","end":"2027-05-27T15:00:00-04:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2027-05-27T14:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270531T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzA1MzFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-05-31T12:00:00-04:00","end":"2027-05-31T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-05-31T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20270603T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzA2MDNUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-06-03T12:00:00-04:00","end":"2027-06-03T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-06-03T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270603T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzA2MDNUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-06-03T13:30:00-04:00","end":"2027-06-03T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-06-03T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20270603T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzA2MDNUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-06-03T12:00:00-04:00","end":"2027-06-03T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-06-03T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270603T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzA2MDNUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-06-03T13:30:00-04:00","end":"2027-06-03T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-06-03T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270607T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzA2MDdUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-06-07T12:00:00-04:00","end":"2027-06-07T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-06-07T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20270608T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNzA2MDhUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2027-06-08T12:00:00-04:00","end":"2027-06-08T13:00:00-04:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2027-06-08T12:00:00-04:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20270610T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNzA2MTBUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-06-10T09:00:00-04:00","end":"2027-06-10T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2027-06-10T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} @@ -393,10 +397,15 @@ {"kind":"calendar#event","etag":"\"3540588476990878\"","id":"pag44b4o3k87r90laj5vf5t67v_20270624T180000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cGFnNDRiNG8zazg3cjkwbGFqNXZmNXQ2N3ZfMjAyNzA2MjRUMTgwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-04T10:48:14.000Z","updated":"2026-02-05T12:23:58.495Z","summary":"GraphQL-over-HTTP WG","description":"https://zoom.us/j/92781382543 
Zoom password: httpwg","location":"https://github.com/graphql/graphql-over-http/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-06-24T14:00:00-04:00","end":"2027-06-24T15:00:00-04:00","recurringEventId":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000","originalStartTime":{"dateTime":"2027-06-24T14:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"pag44b4o3k87r90laj5vf5t67v_R20260226T190000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270628T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzA2MjhUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-06-28T12:00:00-04:00","end":"2027-06-28T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-06-28T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540588274775390\"","id":"5lk8stcvmomgh5n4o8766f7nt4_20270630T170000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=NWxrOHN0Y3Ztb21naDVuNG84NzY2ZjdudDRfMjAyNzA2MzBUMTcwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2021-02-02T17:29:31.000Z","updated":"2026-02-05T12:22:17.387Z","summary":"GraphQL.js Working Group meeting","description":"https://zoom.us/j/96871026087?pwd=aHhrNWJIUDFoQXNDdTNzUzBkRTJ0QT09
Password: graphqljs

Please note these meetings are recorded and posted to https://youtube.graphql.org

To join, please open a PR and add yourself to the meeting agenda: https://github.com/graphql/graphql-js-wg/tree/main/agendas

You must have completed the (free) GraphQL Specification Membership Agreement prior to joining.","location":"https://github.com/graphql/graphql-js-wg/tree/main/agendas","creator":{"email":"bwarner@linuxfoundation.org"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-06-30T13:00:00-04:00","end":"2027-06-30T14:00:00-04:00","recurringEventId":"5lk8stcvmomgh5n4o8766f7nt4_R20260225T170000","originalStartTime":{"dateTime":"2027-06-30T13:00:00-04:00","timeZone":"UTC"},"iCalUID":"5lk8stcvmomgh5n4o8766f7nt4_R20260225T170000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540607261371006\"","id":"op4181cbuekphecnfnuh384lek_20270701T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzA3MDFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-02-05T15:00:30.685Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-01T12:00:00-04:00","end":"2027-07-01T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-07-01T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} -{"kind":"calendar#event","etag":"\"3540587453820894\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270701T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzA3MDFUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-02-05T12:15:26.910Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-01T13:30:00-04:00","end":"2027-07-01T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-07-01T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455981358302\"","id":"op4181cbuekphecnfnuh384lek_20270701T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=b3A0MTgxY2J1ZWtwaGVjbmZudWgzODRsZWtfMjAyNzA3MDFUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:52:53.000Z","updated":"2026-03-05T16:26:30.679Z","summary":"Composite schemas WG - Primary","description":"The main monthly meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg


https://zoom.us/j/91078840351 
 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-01T12:00:00-04:00","end":"2027-07-01T13:00:00-04:00","recurringEventId":"op4181cbuekphecnfnuh384lek_R20260205T170000","originalStartTime":{"dateTime":"2027-07-01T12:00:00-04:00","timeZone":"Europe/Berlin"},"transparency":"transparent","iCalUID":"op4181cbuekphecnfnuh384lek_R20260205T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3545455992214046\"","id":"1alpt1iidn6gfs1j7c7723qf7c_20270701T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFscHQxaWlkbjZnZnMxajdjNzcyM3FmN2NfMjAyNzA3MDFUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-07T13:57:52.000Z","updated":"2026-03-05T16:26:36.107Z","summary":"GraphQL Primary WG","description":"https://zoom.us/j/593263740 
Password: graphqlwg
 
Notes: https://docs.google.com/document/d/1q-sT4k8-c0tcDYJ8CxPZkJ8UY4Nhk3HbKsRxosu_7YE/edit?usp=sharing","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-01T13:30:00-04:00","end":"2027-07-01T15:00:00-04:00","recurringEventId":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000","originalStartTime":{"dateTime":"2027-07-01T13:30:00-04:00","timeZone":"America/Los_Angeles"},"transparency":"transparent","iCalUID":"1alpt1iidn6gfs1j7c7723qf7c_R20260205T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270705T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzA3MDVUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-05T12:00:00-04:00","end":"2027-07-05T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-07-05T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540446284717854\"","id":"q3qul35gpekign7gc8cvr6bap1_20270708T130000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=cTNxdWwzNWdwZWtpZ243Z2M4Y3ZyNmJhcDFfMjAyNzA3MDhUMTMwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:20:13.000Z","updated":"2026-02-04T16:39:02.358Z","summary":"GraphQL Foundation Secondary Working Session (fortnightly)","description":"GraphQL Foundation Working Session Notes","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/91228653788?password=0745533d-9a7a-42bb-8c72-3b823f679384","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-08T09:00:00-04:00","end":"2027-07-08T10:00:00-04:00","recurringEventId":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000","originalStartTime":{"dateTime":"2027-07-08T09:00:00-04:00","timeZone":"America/New_York"},"transparency":"transparent","iCalUID":"q3qul35gpekign7gc8cvr6bap1_R20260122T140000@google.com","sequence":1,"attachments":[{"fileUrl":"https://docs.google.com/document/d/19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc/edit?tab=t.0","title":"GraphQL Foundation Working Session Notes","mimeType":"application/vnd.google-apps.document","iconLink":"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.document","fileId":"19-alP5jywnXzgN_1zYLBTRWh-4CaXzGakEZdTBFwNAc"}],"eventType":"default"} {"kind":"calendar#event","etag":"\"3541817013494398\"","id":"1ae8m39lvqtigc4ao1p670g8il_20270708T150000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MWFlOG0zOWx2cXRpZ2M0YW8xcDY3MGc4aWxfMjAyNzA3MDhUMTUwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-02-04T14:14:16.000Z","updated":"2026-02-12T15:01:46.747Z","summary":"GraphQL Community WG","description":"https://zoom.us/j/93104287544 
Meeting password: community

https://github.com/graphql/community-wg/tree/main/agendas

Please be aware that meetings are recorded and/or live-streamed.","location":"https://github.com/graphql/community-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-08T11:00:00-04:00","end":"2027-07-08T12:00:00-04:00","recurringEventId":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000","originalStartTime":{"dateTime":"2027-07-08T11:00:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"1ae8m39lvqtigc4ao1p670g8il_R20260212T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} {"kind":"calendar#event","etag":"\"3540587760961566\"","id":"lvqspfdh491rrdmvl7k1mruqd8_20270708T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=bHZxc3BmZGg0OTFycmRtdmw3azFtcnVxZDhfMjAyNzA3MDhUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:56:35.000Z","updated":"2026-02-05T12:18:00.480Z","summary":"Composite schemas WG - Weekly 2","description":"The weekly \"secondary\" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

https://zoom.us/j/91078840351 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-08T12:00:00-04:00","end":"2027-07-08T13:00:00-04:00","recurringEventId":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000","originalStartTime":{"dateTime":"2027-07-08T12:00:00-04:00","timeZone":"Europe/Berlin"},"iCalUID":"lvqspfdh491rrdmvl7k1mruqd8_R20260212T170000@google.com","sequence":1,"eventType":"default"} {"kind":"calendar#event","etag":"\"3541522807391806\"","id":"_88p44e1i74p3eba174pkcb9k74q4aba28orkcb9l6d2j0hi660p44da16o_20270708T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=Xzg4cDQ0ZTFpNzRwM2ViYTE3NHBrY2I5azc0cTRhYmEyOG9ya2NiOWw2ZDJqMGhpNjYwcDQ0ZGExNm9fMjAyNzA3MDhUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2026-02-10T22:08:10.000Z","updated":"2026-02-10T22:10:03.695Z","summary":"Golden Path WG","description":"https://github.com/graphql/golden-path-wg/blob/main/agendas/\nZoom password: golden","location":"https://zoom.us/j/97928489872?pwd=WVsGN8orE4qxbDN8stuGlu1yKwTYbT.1","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-08T13:30:00-04:00","end":"2027-07-08T14:30:00-04:00","recurringEventId":"_88p44e1i74p3eba174pkcb9k74q4aba28orkcb9l6d2j0hi660p44da16o","originalStartTime":{"dateTime":"2027-07-08T13:30:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"B2B82927-A93F-494E-BF7F-53E0FF02B5A6","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3538863009960286\"","id":"3bfdghudk6socgfvn39jgafv11_20270712T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=M2JmZGdodWRrNnNvY2dmdm4zOWpnYWZ2MTFfMjAyNzA3MTJUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-29T15:14:17.000Z","updated":"2026-01-26T12:45:04.980Z","summary":"GraphQL Foundation Primary Working Session (weekly)","description":"You have been invited to a recurring meeting for GraphQL Foundation

GraphQL Foundation Working Session Notes

Ways to join meeting:

1. Join from PC, Mac, iPad, or Android

https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a

2. Join via audio

One tap mobile:
US: +12532158782,,96286151238# or +13462487799,,96286151238

Or dial:
US: +1 253 215 8782 or +1 346 248 7799 or +1 669 900 6833 or +1 301 715 8592 or +1 312 626 6799 or +1 646 374 8656 or 877 369 0926 (Toll Free) or 855 880 1246 (Toll Free)
Canada: +1 647 374 4685 or +1 647 558 0588 or +1 778 907 2071 or +1 204 272 7920 or +1 438 809 7799 or +1 587 328 1099 or 855 703 8985 (Toll Free)

Meeting ID: 96286151238

Meeting Passcode: 986182


International numbers: https://zoom.us/u/alwnPIaVT
","location":"https://zoom-lfx.platform.linuxfoundation.org/meeting/96286151238?password=ff267735-efbd-4be4-a89c-b927b596190a","creator":{"email":"jeff.auriemma@apollographql.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-12T12:00:00-04:00","end":"2027-07-12T13:00:00-04:00","recurringEventId":"3bfdghudk6socgfvn39jgafv11","originalStartTime":{"dateTime":"2027-07-12T12:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"3bfdghudk6socgfvn39jgafv11@google.com","sequence":4,"guestsCanInviteOthers":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3540587651763038\"","id":"h145k0fkdl9n126apfr3qn0vfr_20270713T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDE0NWswZmtkbDluMTI2YXBmcjNxbjB2ZnJfMjAyNzA3MTNUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2020-04-02T01:41:08.000Z","updated":"2026-02-05T12:17:05.881Z","summary":"GraphiQL Working Group","description":"https://zoom.us/j/760146252 
Meeting password: graphiql

https://github.com/graphql/graphiql/blob/master/working-group/agendas

Please be aware that these calls are recorded and/or live streamed.","location":"https://github.com/graphql/graphiql/tree/main/working-group/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation","self":true},"start":"2027-07-13T12:00:00-04:00","end":"2027-07-13T13:00:00-04:00","recurringEventId":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000","originalStartTime":{"dateTime":"2027-07-13T12:00:00-04:00","timeZone":"UTC"},"iCalUID":"h145k0fkdl9n126apfr3qn0vfr_R20260210T160000@google.com","sequence":1,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3540588142317950\"","id":"h9erafl4rc1jjor9i6akokm5ec_20270715T150000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=aDllcmFmbDRyYzFqam9yOWk2YWtva201ZWNfMjAyNzA3MTVUMTUwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2023-12-08T21:32:03.000Z","updated":"2026-02-05T12:21:11.158Z","summary":"GraphQL Governing Board Meeting","location":"https://graphql.org/community/foundation/join/","creator":{"email":"jburson@linuxfoundation.org"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-15T11:00:00-04:00","end":"2027-07-15T12:00:00-04:00","recurringEventId":"h9erafl4rc1jjor9i6akokm5ec_R20260219T160000","originalStartTime":{"dateTime":"2027-07-15T11:00:00-04:00","timeZone":"America/New_York"},"iCalUID":"h9erafl4rc1jjor9i6akokm5ec_R20260219T160000@google.com","sequence":3,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3540588074510910\"","id":"kkc5tt01ovrjv8fki1lo31g5hj_20270715T160000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=a2tjNXR0MDFvdnJqdjhma2kxbG8zMWc1aGpfMjAyNzA3MTVUMTYwMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2024-01-12T09:55:37.000Z","updated":"2026-02-05T12:20:37.255Z","summary":"Composite schemas WG - Weekly 3","description":"The weekly \"secondary\" meeting of the composite schemas WG: https://github.com/graphql/composite-schemas-wg

https://zoom.us/j/91078840351 
Meeting password is \"composite\"

Live notes are at https://docs.google.com/document/d/1hJO6U7daYvcNcQ3FBKnh3v4R256ers6M8IGyqRpY_kE/edit?usp=sharing","location":"https://github.com/graphql/composite-schemas-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-15T12:00:00-04:00","end":"2027-07-15T13:00:00-04:00","recurringEventId":"kkc5tt01ovrjv8fki1lo31g5hj_R20260219T170000","originalStartTime":{"dateTime":"2027-07-15T12:00:00-04:00","timeZone":"Europe/Berlin"},"iCalUID":"kkc5tt01ovrjv8fki1lo31g5hj_R20260219T170000@google.com","sequence":1,"eventType":"default"} +{"kind":"calendar#event","etag":"\"3540588119667870\"","id":"2ffd8o32sh77kd3mtccrtg887n_20270715T173000Z","status":"confirmed","htmlLink":"https://www.google.com/calendar/event?eid=MmZmZDhvMzJzaDc3a2QzbXRjY3J0Zzg4N25fMjAyNzA3MTVUMTczMDAwWiBsaW51eGZvdW5kYXRpb24ub3JnX2lrNzl0OXV1ajJwMzJpM3IyMDNkZ3Y1bW84QGc","created":"2025-05-01T19:23:48.000Z","updated":"2026-02-05T12:20:59.833Z","summary":"GraphQL WG - Secondary (EU)","description":"https://zoom.us/j/593263740 
Zoom password: graphqlwg","location":"https://github.com/graphql/graphql-wg/tree/main/agendas","creator":{"email":"benjie@graphile.com"},"organizer":{"email":"linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8@group.calendar.google.com","displayName":"GraphQL Foundation - Public","self":true},"start":"2027-07-15T13:30:00-04:00","end":"2027-07-15T15:00:00-04:00","recurringEventId":"2ffd8o32sh77kd3mtccrtg887n_R20260219T183000","originalStartTime":{"dateTime":"2027-07-15T13:30:00-04:00","timeZone":"America/Los_Angeles"},"iCalUID":"2ffd8o32sh77kd3mtccrtg887n_R20260219T183000@google.com","sequence":0,"guestsCanInviteOthers":false,"guestsCanSeeOtherGuests":false,"eventType":"default"} From 2b872cc061ebc42a882959f87fe5b1cd10f315e9 Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Thu, 5 Mar 2026 16:49:24 +0000 Subject: [PATCH 5/6] No need for redundant sort --- scripts/sync-working-groups/sync-working-groups.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/sync-working-groups/sync-working-groups.ts b/scripts/sync-working-groups/sync-working-groups.ts index 71565420c1..aa7c4b92e4 100644 --- a/scripts/sync-working-groups/sync-working-groups.ts +++ b/scripts/sync-working-groups/sync-working-groups.ts @@ -213,9 +213,7 @@ function mergeMeetings( byId.delete(id) } - const list = Array.from(byId.values()) - list.sort((a, z) => a.start.localeCompare(z.start)) - return list + return Array.from(byId.values()) } try { From 058f431bc2e9144f1b1d540607cccb2f925c9daa Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Thu, 5 Mar 2026 16:59:34 +0000 Subject: [PATCH 6/6] Make it more obvious where prioritization happens --- src/app/(main)/community/events/events-list.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/(main)/community/events/events-list.tsx b/src/app/(main)/community/events/events-list.tsx index f363541cc6..48dc005284 100644 --- a/src/app/(main)/community/events/events-list.tsx +++ b/src/app/(main)/community/events/events-list.tsx @@ -176,12 +176,15 @@ export function EventsList({ } const majorEvents: AnyEvent[] = [] const minorEvents: AnyEvent[] = [] + + // Prioritize major vs minor events const target = { conference: majorEvents, meetup: majorEvents, "working-group": minorEvents, "foundation-meeting": minorEvents, } satisfies { [kind in EventKind]: AnyEvent[] } + for (const event of allEvents) { const kind = categorizeEvent(event) if (kind === null) {