|
| 1 | +// @ts-check |
| 2 | + |
| 3 | +/** @type {import('wgutils').Config} */ |
| 4 | +const config = { |
| 5 | + name: "GraphQL JS WG", |
| 6 | + repoUrl: "https://github.com/graphql/graphql-js-wg", |
| 7 | + videoConferenceDetails: `https://zoom.us/j/96871026087 |
| 8 | + - _Password:_ graphqljs`, |
| 9 | + liveNotesUrl: |
| 10 | + "https://docs.google.com/document/d/12LM6NZxR22zBwRfihM8Vrf7uV-0gmmO5M3ooSCVS0Hs/edit?usp=sharing", |
| 11 | + timezone: "UTC", |
| 12 | + frequency: "monthly", |
| 13 | + nth: -1, |
| 14 | + weekday: "W", // M, Tu, W, Th, F, Sa, Su |
| 15 | + time: "17:00-18:00", // 24-hour clock, range |
| 16 | + attendeesTemplate: `\ |
| 17 | +| Name | GitHub | Organization | Location | |
| 18 | +| :------------------- | :------------ | :----------------- | :-------------------- | |
| 19 | +| Benjie Gillam (Host) | @benjie | Graphile | Chandler's Ford, UK | |
| 20 | +`, |
| 21 | + description: `\ |
| 22 | +GraphQL-JS WG (Working Group) is a monthly virtual meeting of maintainers of |
| 23 | +commonly used GraphQL libraries and tools and significant contributors in the |
| 24 | +Javascript ecosystem, operated by the GraphQL Foundation. This is an open |
| 25 | +meeting in which anyone in the GraphQL community may attend. |
| 26 | +
|
| 27 | +The GraphQL-JS WG's primary purpose is to discuss and agree upon proposed |
| 28 | +changes to the [GraphQL-JS](https://github.com/graphql/graphql-spec) reference |
| 29 | +implementation. |
| 30 | +`, |
| 31 | + /* |
| 32 | + // Additional configuration (optional): |
| 33 | +
|
| 34 | + agendasFolder: "agendas", |
| 35 | + dateAndTimeLocations: 'p1=224&p2=179&p3=136&p4=37&p5=239&p6=101&p7=152', |
| 36 | + joiningAMeetingFile: "JoiningAMeeting.md", |
| 37 | + filenameFragment: "wg-primary", |
| 38 | + links: { |
| 39 | + "graphql specification": "https://github.com/graphql/graphql-spec", |
| 40 | + calendar: "https://calendar.google.com/calendar/embed?src=linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8%40group.calendar.google.com", |
| 41 | +"google calendar": "https://calendar.google.com/calendar?cid=bGludXhmb3VuZGF0aW9uLm9yZ19pazc5dDl1dWoycDMyaTNyMjAzZGd2NW1vOEBncm91cC5jYWxlbmRhci5nb29nbGUuY29t", |
| 42 | +"ical file": "https://calendar.google.com/calendar/ical/linuxfoundation.org_ik79t9uuj2p32i3r203dgv5mo8%40group.calendar.google.com/public/basic.ics", |
| 43 | + }, |
| 44 | + secondaryMeetings: [ |
| 45 | + { |
| 46 | + // Wednesday, not Thursday |
| 47 | + dayOffset: -1, |
| 48 | + nth: 2, |
| 49 | + time: "16:00-17:00", |
| 50 | + name: "Secondary, APAC", |
| 51 | + // filenameFragment: "wg-secondary-apac", |
| 52 | + description: `\ |
| 53 | +The GraphQL Working Group meets regularly to discuss changes to the |
| 54 | +[GraphQL Specification][] and other core GraphQL projects. This is an open |
| 55 | +meeting in which anyone in the GraphQL community may attend. |
| 56 | +
|
| 57 | +This is a secondary meeting, timed to be acceptable for those in Asia Pacific |
| 58 | +timezones, which typically meets on the second Wednesday of the month. The |
| 59 | +primary meeting is preferred for new agenda, where this meeting is for overflow |
| 60 | +agenda items, follow ups from the primary meeting, or agenda introduced by those |
| 61 | +who could not make the primary meeting time.`, |
| 62 | + }, |
| 63 | + { |
| 64 | + nth: 3, |
| 65 | + time: "10:30-12:00", |
| 66 | + name: "Secondary, EU", |
| 67 | + filenameFragment: "wg-secondary-eu", |
| 68 | + description: `\ |
| 69 | +The GraphQL Working Group meets regularly to discuss changes to the |
| 70 | +[GraphQL Specification][] and other core GraphQL projects. This is an open |
| 71 | +meeting in which anyone in the GraphQL community may attend. |
| 72 | +
|
| 73 | +This is a secondary meeting, timed to be acceptable for those in European |
| 74 | +timezones, which typically meets on the third Thursday of the month. The |
| 75 | +primary meeting is preferred for new agenda, where this meeting is for overflow |
| 76 | +agenda items, follow ups from the primary meeting, or agenda introduced by those |
| 77 | +who could not make the primary meeting time.`, |
| 78 | + }, |
| 79 | + ], |
| 80 | +*/ |
| 81 | +}; |
| 82 | + |
| 83 | +module.exports = config; |
0 commit comments