0.0.4 ā€¢ Published 4 years ago

gridsome-source-conference-hall v0.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

A gridsome plugin to import into graphQL a conference-hall event

Install

# npm
npm install gridsome-source-conference-hall

# yarn
yarn add gridsome-source-conference-hall

Usage

You need to add this plugin to your gridsome project configuration file :

// in gridsome.config.js
{
  // ...
  plugins: [
    // ...
    {
      use: 'gridsome-source-conference-hall',
      options: {
        apiKey: '<YOUR_API_KEY>',
        eventId: '<YOUR_EVENT_ID>'
      }
    }
  ]
}

Configuration

option namedescription
apiKeyThe api key generated by conference-all through the event configuration page
eventIdThe event id of the event
filterConfirmedTalksIf true insert only data from confirmed talks
convertAbstractsToHtmlConvert talk abstract to HTML

Available data

This plugin insert into gridsome graphql all the event data available as exported by the API. You'll find Event, Speaker, Category, Format and Talk types with all queries generated by gridsome (e.g. speaker(...), allSpeaker(...), talk(...), allTalk(...)...). Do not hesitate to explore data with GraphQL Playground available from the Gridsome CLI

Author

šŸ‘¤ Thomas Betous

šŸ¤ Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ā­ļø if this project helped you!

šŸ“ License

Copyright Ā© 2020 tbetous. This project is MIT licensed.


This README was generated with ā¤ļø by readme-md-generator