A gridsome plugin to import into graphQL a conference-hall event
# npm
npm install gridsome-source-conference-hall
# yarn
yarn add gridsome-source-conference-hall
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>'
}
}
]
}
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 |
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
👤 Thomas Betous
Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.
Give a ⭐️ if this project helped you!
Copyright © 2020 tbetous.
This project is MIT licensed.
This README was generated with ❤️ by readme-md-generator