gridsome-source-conference-hall
v0.0.4
Published
A gridsome plugin to import conference-hall data
Maintainers
Readme
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-hallUsage
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 name | description | | ---------------------- | ---------------------------------------------------------------------------- | | apiKey | The api key generated by conference-all through the event configuration page | | eventId | The event id of the event | | filterConfirmedTalks | If true insert only data from confirmed talks | | convertAbstractsToHtml | Convert 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
