Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
gatsby-source-github-api
Advanced tools
Source plugin for pulling data into Gatsby from the official GitHub v4 GraphQL API.
npm i gatsby-source-github-api
Follow GitHub's guide how to generate a token.
Once you are done, either create a gatsby-config.js
file or open the one you already have.
In there, you want to add this plugin and at least add the token in the options object:
// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-source-github-api`,
options: {
// token: required by the GitHub API
token: someString,
// GraphQLquery: defaults to a search query
graphQLQuery: anotherString,
// variables: defaults to variables needed for a search query
variables: someObject
}
}
]
Search query:
// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-source-github`,
options: {
token: 'hunter2',
variables: {
q: "author:ldd state:closed type:pr sort:comments",
nFirst: 2
}
}
}
]
resulting API call:
query ($nFirst: Int, $q: String) {
search(query: "${q}", type: ISSUE, first: ${nFirst}){
edges{
node{
... on PullRequest{
title
}
}
}
}
}
Custom GraphQL query:
// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-source-github`,
options: {
token: 'hunter2',
variables: {},
graphQLQuery: `
query {
repository(owner:"torvalds",name:"linux"){
description
}
}
`
}
}
]
resulting API call:
query {
repository(owner:"torvalds", name:"linux"){
description
}
}
For more examples see gatsby-starter-github-portfolio.
You'll probably want to use valid GraphQL queries. To help you, GitHub has a Query Explorer with auto-completion.
v0.1.0 Submit to Gatsby's Plugin Library v0.0.4 Update dev dependencies, add linting script to package.json v0.0.3 Initial public release
FAQs
gatsby plugin for github v4 API
The npm package gatsby-source-github-api receives a total of 451 weekly downloads. As such, gatsby-source-github-api popularity was classified as not popular.
We found that gatsby-source-github-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.