A gatsby source plugin for pulling in third party api data.
- Pulls data from configured api url
- Uses custom name to allow for multiple instances of plugin
- Option to download the json data to a configurable path
- Option to only download the json data, and skip inserting it into GraphQL
- Supports simple authentication through axios
npm install --save gatsby-source-apiserver
Migrate for Gatsby-v2 release:
Please checkout version 2.0.0
or next
npm install --save gatsby-source-apiserver@next
2.1.0
: Support multiple entities for multiple api servers, pls take a look at attributeentitiesArray
2.0.0
: Support gatsby-v2
// Place configuration options in your gatsby-config.js
plugins: [
{
resolve: 'gatsby-source-apiserver',
options: {
// Type prefix of entities from server
typePrefix: 'internal__',
// The url, this should be the endpoint you are attempting to pull data from
url: `http://yourapi.com/api/v1/posts`,
method: 'post',
headers: {
'Content-Type': 'application/json'
},
// Request body
data: {
},
// Name of the data to be downloaded. Will show in graphQL or be saved to a file
// using this name. i.e. posts.json
name: `posts`,
// Nested level of entities in response object, example: `data.posts`
entityLevel: `data.posts`,
// Define schemaType to normalize blank values
// example:
// const postType = {
// id: 1,
// name: 'String',
// published: true,
// object: {a: 1, b: '2', c: false},
// array: [{a: 1, b: '2', c: false}]
// }
schemaType: postType,
//Request parameters
params: {
requestParameters: ['some', 'request', 'parameters']
},
// Simple authentication, if optional, set it null
auth: {
username: 'myusername',
password: 'supersecretpassword1234'
},
// Advanced authentication for Auth0
auth0Config: {
method: 'POST',
url: 'https://MyAuth0Domain/oauth/token',
headers: { 'content-type': 'application/json' },
data: {
grant_type: 'password',
username: 'myusername',
password: 'PassAWordHere',
audience: 'Auth0APIAudience',
scope: 'openid',
client_id: 'AUTH0_CLIENT_ID',
client_secret: 'AUTH0_SECRET'
},
json: true
},
// Optional payload key name if your api returns your payload in a different key
// Default will use the full response from the http request of the url
payloadKey: `body`,
// Optionally save the JSON data to a file locally
// Default is false
localSave: false,
// Required folder path where the data should be saved if using localSave option
// This folder must already exist
path: `${__dirname}/src/data/auth/`,
// Optionally include some output when building
// Default is false
verboseOutput: true, // For debugging purposes
// Optionally skip creating nodes in graphQL. Use this if you only want
// The data to be saved locally
// Default is false
skipCreateNode: false, // skip import to graphQL, only use if localSave is all you want
// Pass an array containing any number of the entity configuration properties (except verbose, auth0Config),
// any not specified are defaulted to the general properties that are specified
entitiesArray: [{
url: `http://yourapi.com/api/v1/posts`,
method: 'post',
headers: {
'Content-Type': 'application/json'
},
name: `posts`,
}]
}
}
];
Data will be available at the following points in GraphQL.
all<TypePrefix><Name>
or <TypePrefix><Name>
where TypePrefix
and Name
is replaced by the name entered in the
configuration options.
This plugin will automatically add the dummy node for initialize Gatsby Graphql Schema (for handling graphql error if some field is missing). The dummy node will have field id: 'dummy'
, you should exclude dummy node from createPage()
egdes.node.id === 'dummy'
Note: make sure you pass option schemaType
to make dummy node works.
Some of the returned keys may be transformed if they conflict with restricted keys used for
GraphQL such as the following ['id', 'children', 'parent', 'fields', 'internal']
These conflicting keys will now show up as alternative_id