gatsby-source-metachain
Source plugin for pulling data into Gatsby from a metachain API.
Install
npm install --save @metachain/gatsby-source-metachain
Usage
- Go to
gatsby-config.js
on your Gatsby project - Add new entry to plugins properly configured with your settings
module.exports = {
// ... some gatsby configuration
plugins: [
// ... some gatsby plugins
// You can take advantage of the following plugins with gatsby-source-metachain
// `gatsby-plugin-image`,
// `gatsby-transformer-sharp`,
// `gatsby-plugin-sharp`,
// Finally our plugin
{
resolve: '@metachain/gatsby-source-metachain',
options: {
url: `https://myproject.metachain.com.tr`, // Fill with your metachain instance address
auth: {
token: 'my_secret_token', // You can use a static token from an user
// Or you can use the credentials of an user
// email: "johndoe@metachain.com.tr",
// password: "mysecretpassword",
},
},
},
],
};
- Request your data
query {
# if you change `type.name`, remember to also rename following field
metachain {
# the collection you want to query
articles {
# the fields you want to query from above collection
title
files {
# since this is a M2M relationship, we need to reference the junction field
metachain_files_id {
# `id` is required to be fetched in order to be used with `gatsby-transformer-sharp`
id
imageFile {
# when using the plugin 'gatsby-transformer-sharp', you can query images with transformations
childImageSharp {
gatsbyImageData(width: 200)
}
}
}
}
}
}
# it's also possible to query system collections
metachain_system {
users {
email
}
files {
id
imageFile {
childImageSharp {
gatsbyImageData(width: 200)
}
}
}
}
}
Note: When using with gatsby-transformer-sharp
you will need to query id
of the asset (specified on
metachainData_metachain_files
type).
Options
-
url
[Required] - should be a valid URL to your metachain instance -
auth
[Optional] - defines if requests will have authentication or not. You should define this if you want access to non-public content.-
auth.token
[Optional] - should be the static token of the user which will make the requests. You can define one on user detail page. -
auth.email
[Optional, but required with password and ignored ifauth.token
defined] - should be the email of the user which will make the requests. -
auth.password
[*Optional, but required with email and ignored ifauth.token
defined*] - should be the password of the user which will make the requests.
-
-
type
[Optional] - defines the type and field name to be used on GraphQL. If you are using multiple instances of metachain, please ensure you have unique type and field names per instance.-
type.name
[Optional, defaults tometachainData
] - defines the GraphQL type name to be used for user defined collections -
type.field
[Optional, defaults tometachain
] - defines the GraphQL field name to query user defined collections. If you change this property, remember to query the proper field insidequery
. -
type.system_name
[Optional, defaults tometachainSystemData
] - defines the GraphQL type name to be used for metachain defined collections, i.e.,metachain_users
,metachain_files
, etc. -
type.system_field
[Optional, defaults tometachain_system
] - defines the GraphQL field name to query metachain defined collections.
-
-
dev
[Optional] - defines options for development environments
s)
graphql
[Optional] - defines extra options to be passed intogatsby-source-graphql
. Useful for advanced use cases.
How to query
The default way to query data is to fetch items from metachain
field.
query {
metachain {
items {
my_collection {
some_field
other_field
}
}
}
}
If you specify the type.field
, you must query from that field instead.
query {
# In this case `type.field` is "blog"
blog {
items {
posts {
id
title
slug
status
}
}
}
# While in this case `type.field` is "portal"
portal {
items {
pages {
id
title
slug
status
}
}
}
}