1.0.0 • Published 7 years ago
gatsby-source-github-feed v1.0.0
Gatsby Source Github Feed
Source plugin for pulling data into Gatsby from RSS feed.
Install
npm install --save gatsby-source-github-feedor
yarn add gatsby-source-github-feedHow to use
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-source-github-feed`,
options: {
profile: `gregorskii`,
name: `GithubProfile`,
}
}
]
}How to query
Query is Feed${name}.
When name of options is GithubProfile, query named as FeedGithubProfile.
query allFeedGithubProfile {
allFeedGithubProfile {
edges {
node {
id
type
actor {
display_login
avatar_url
}
repo {
name
url
}
payload {
action
issue {
title
body
}
}
}
}
}TODO:
Authentication option
1.0.0
7 years ago