gatsby-source-drupal7
v0.0.4
Published
Gatsby source plugin for Drupal 7
Downloads
1
Maintainers
Readme
gatsby-source-drupal7
A source plugin for Gatsby that pulls data from Drupal 7.
This source plugin has been forked from gatsby-source-drupal to extend functionality to Drupal 7.
Requirements:
Drupal 7 site with the following modules installed and enabled:
Install:
npm install --save gatsby-source-drupal7
Configuration:
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-source-drupal7`,
options: {
baseUrl: `https://live-mydrupal7site.pantheonsite.io/`,
apiBase: `restws_resource.json`, // optional, defaults to `restws_resource.json`
},
},
],
}
Auth:
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-source-drupal7`,
options: {
baseUrl: `https://live-mydrupal7site.pantheonsite.io/`,
apiBase: `restws_resource.json`, // optional, defaults to `restws_resource.json`
basicAuth: {
username: process.env.BASIC_AUTH_USERNAME,
password: process.env.BASIC_AUTH_PASSWORD,
},
},
},
],
}
Querying:
{
allNode {
edges {
node {
data {
title
created
body {
value
}
}
}
}
}
}