├── CNAME ├── assets ├── community_partners │ ├── placeholder.md │ └── escape.png ├── GraphQLConf │ ├── GraphQLCon_2023_1012_506_Newsletter.png │ ├── GraphQLCon_2023__670_300_Newsletter.png │ └── README.md └── media_partners │ ├── graphql-wtf │ ├── dark-icon.svg │ ├── pink-icon.svg │ ├── white-logo.svg │ └── pink-icon-white-text-logo.svg │ └── graphql_weekly │ └── pink-icon-white-text-log.svg ├── .gitignore ├── TWiG └── README.md ├── plans ├── graphqlconf_comms.md └── 2023_marketing.md ├── meetings ├── 2021-02-25.md └── 2021-01-28.md ├── src ├── css │ └── style.css ├── community-partners.html └── media-partners.html ├── graphqlconf ├── partners │ ├── community_appls │ │ ├── Nunya-Bidness.md │ │ └── template.md │ └── media_appls │ │ └── template.md ├── README.md └── partners.md ├── graph_traversal ├── README.md └── S1E1_prep_qs.md ├── .github └── ISSUE_TEMPLATE │ ├── suggest.yml │ └── bug.yml └── README.md /CNAME: -------------------------------------------------------------------------------- 1 | www.graphqlconf.dev -------------------------------------------------------------------------------- /assets/community_partners/placeholder.md: -------------------------------------------------------------------------------- 1 | # TODO add info here -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ./*/.DS_Store 3 | ./*/*/.DS_Store 4 | ./*/*/*/.DS_Store -------------------------------------------------------------------------------- /TWiG/README.md: -------------------------------------------------------------------------------- 1 | # This Week in GraphQL 2 | 3 | ## The Official Newsletter of the GraphQL Foundation -------------------------------------------------------------------------------- /assets/community_partners/escape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/marketing/main/assets/community_partners/escape.png -------------------------------------------------------------------------------- /assets/GraphQLConf/GraphQLCon_2023_1012_506_Newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/marketing/main/assets/GraphQLConf/GraphQLCon_2023_1012_506_Newsletter.png -------------------------------------------------------------------------------- /assets/GraphQLConf/GraphQLCon_2023__670_300_Newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/marketing/main/assets/GraphQLConf/GraphQLCon_2023__670_300_Newsletter.png -------------------------------------------------------------------------------- /plans/graphqlconf_comms.md: -------------------------------------------------------------------------------- 1 | Posted on Google Docs 2 | 3 | [Phase 1 GraphQLConf comms plan](https://docs.google.com/document/d/1xCH6fJgs4icD67r9KhtRc2yfmWrILABnDOqOlrCmtJg/edit#) 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /meetings/2021-02-25.md: -------------------------------------------------------------------------------- 1 | # GraphQL Foundation Marketing Committee 2 | 3 | 4 | 5 | ### Attendees 6 | * ... 7 | 8 | ### Agenda (add items here) 9 | 10 | 1. Spec release 11 | 1. Annual report 12 | 1. Do we want to start migrating from foundation.graphql.org to graphql.org 13 | 14 | 15 | -------------------------------------------------------------------------------- /assets/media_partners/graphql-wtf/dark-icon.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /assets/media_partners/graphql-wtf/pink-icon.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: 'Rubik', sans-serif; 3 | -webkit-text-size-adjust: 100%; 4 | background-color: #fff; 5 | color: #202020; 6 | font-size: 18px; 7 | font-weight: 300; 8 | line-height: 28.8px; 9 | margin: 14px; 10 | } 11 | 12 | button { 13 | background: #e10098!important; 14 | color: white; 15 | font-weight: 600; 16 | cursor: pointer; 17 | } 18 | 19 | .title { 20 | color:#e10098; 21 | } 22 | 23 | .error { 24 | color: rgb(247, 62, 62); 25 | font-size: 15px; 26 | } 27 | 28 | .counter{ 29 | font-size: 14px; 30 | font-weight: 400; 31 | } -------------------------------------------------------------------------------- /graphqlconf/partners/community_appls/Nunya-Bidness.md: -------------------------------------------------------------------------------- 1 | ## Application for GraphQLConf 2023 Community Partner 2 | --- 3 | **GraphQL Meetup Pro Network:** 4 | - [x] Yes: 5 | - [ ] No: 6 | 7 | **Full Name:** Nunya Bidness 8 | 9 | **Organization URL:** https://www.docdocgo.dev 10 | 11 | **Contact Person Name:** Doc Jones 12 | 13 | **Contact Email:** doc.jones@postman.com 14 | 15 | **Contact Phone Number:** 9194389115 16 | 17 | **Organization Description:** We meet and drink. 18 | 19 | **Proposed Partnership Activities:** Lots of drinking 20 | 21 | **Social Media Handles:** Twitter: mojosd 22 | Linkedin: doc-jones 23 | 24 | **Additional Comments:** The submit button is a lovely shade of pink 25 | 26 | --- 27 | 28 | -------------------------------------------------------------------------------- /graph_traversal/README.md: -------------------------------------------------------------------------------- 1 | # Graph Traversal 2 | 3 | ## The Official Live Stream from the GraphQL Foundation 4 | 5 | ### Purpose 6 | Graph Traversal aims to spread awareness about the GraphQL Foundation's work by featuring interviews, demos, and discussions with committee members and others from the broader ecosystem. We are exploring different methods of live streaming to promote various Foundation activities, such as GraphQLConf, TWiG, graphql.org, and the grants program. 7 | 8 | ### Tools 9 | We currently use restream.io for live streaming, which enables us to simultaneously broadcast on YouTube, Twitter, and LinkedIn. Additional platforms can be added if necessary. 10 | 11 | [LinkedIn recording](https://www.linkedin.com/video/live/urn:li:ugcPost:7051222661854593024) 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggest.yml: -------------------------------------------------------------------------------- 1 | name: suggest 2 | description: Make a suggestion for the marketing committee 3 | labels: ["Suggestion", "Needs Review", "From another committee"] 4 | 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | ## Suggestion for improvement to a marketing or comms plan, program, etc. 10 | 11 | Thank you for making a suggestion! Please complete the following template and provide as much detail as possible. 12 | 13 | - type: checkboxes 14 | attributes: 15 | label: Is there an existing issue for this? 16 | description: Please search to see if an issue already exists for the suggestion you have. 17 | options: 18 | - label: I have searched existing issues 19 | validations: 20 | required: true 21 | 22 | - type: dropdown 23 | id: committee_choice 24 | attributes: 25 | label: If this suggestion is on behalf of another committee, which one? 26 | options: 27 | - GraphQLConf 28 | - TWiG 29 | - meetings 30 | 31 | - type: textarea 32 | attributes: 33 | label: Provide a detailed description of your suggestion for improvement(s). 34 | -------------------------------------------------------------------------------- /assets/GraphQLConf/README.md: -------------------------------------------------------------------------------- 1 | # GraphQLConf Brand Assets for use by Media and Community Partners 2 | 3 | This folder contains a collection of assets that can be used by community partners to promote events and activities on their Meetup pages, newsletters or other websites. 4 | 5 | ### Included Assets 6 | banner graphics 7 | TODO add more graphics types 8 | 9 | ### Usage Guidelines 10 | These assets are free to use for promotional purposes related to the community events and activities. However, please keep the following guidelines in mind: 11 | 12 | - Do not alter the design or layout of the assets in any way without prior approval. 13 | - Use the assets only for promoting community events and activities. 14 | - Do not use the assets in a way that may be considered harmful or offensive. 15 | - Do not use the assets to imply endorsement or sponsorship by the community unless explicitly authorized. 16 | 17 | ### How to Download 18 | To download an asset, simply click on its file name to open the file preview. From there, click the "Download" button in the upper right corner of the preview window to save the file to your device. 19 | 20 | ### Contact 21 | If you have any questions or concerns regarding the use of these assets, create an Issue in the marketing repository or contact [add email address here]() -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: bug 2 | description: file a bug/issue 3 | title: "[BUG]
Thank you for your interest in becoming a community partner for GraphQLConf, a premier technology conference dedicated to GraphQL and related technologies. Community partners are essential for spreading the word about the conference and supporting our mission to bring together the global GraphQL community. Please fill out this form to apply as a community partner for GraphQLConf. We will review your application and get back to you as soon as possible.
21 |Please indicate whether your organization is a member of the GraphQL Meetup Pro Network
23 |Please provide the full name of your organization.
37 | 38 |Please provide the URL of your organization’s website or Meetup page.
47 | 48 |Provide the full name of the primary contact person for your organization.
57 | 58 |Provide the email address of the primary contact person for your organization.
67 | 68 |Provide the phone number of the primary contact person for your organization.
77 | 78 |Please give a brief description of your organization, its mission, and its activities.
87 | 88 |Please describe the activities and contributions your organization plans to make as a community partner for GraphQLConf. Examples include promoting the event, organizing local meetups or workshops, or providing resources to attendees.
97 | 98 |Please provide the social media handles for your organization on Twitter, Facebook, LinkedIn, Instagram, and any other relevant platforms.
107 | 108 |If you have any additional comments or information you would like to share, please provide them here.
117 | 118 |Welcome to the GraphQLConf Media Partners Application! We’re excited to collaborate with media organizations and influencers who share our passion for GraphQL and technology. Please fill out the form below to apply as a media partner for the upcoming GraphQLConf. We’ll review your application and get back to you as soon as possible.
21 |