Open Zuul86 opened 6 years ago
just add this plugin multiple times
How can I do that? it doesn't work! Please help me somebody! Thanks
{
resolve: 'gatsby-source-google-sheets',
options: {
spreadsheetId: 'id',
worksheetTitle: 'note',
credentials: require('./note-rss-client_secret.json')
}
},
{
resolve: 'gatsby-source-google-sheets',
options: {
spreadsheetId: 'id',
worksheetTitle: 'qiita',
credentials: require('./qiita-rss-client-secret.json')
}
}
@mtfum @MartinNuc I am trying to pull data from two worksheets in the same spreadsheet file, is this possible?
@SKempin It is possible. Adding multiple object of gatsby-source-google-sheets
to the gatsby-config.js
(like the comment above you). I am not sure why that does not work for that person, but one of my project use the exact same structure.
Tested and I can confirm this works
I'd like to be able to pull from two worksheets. How can I accomplish this?