
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
@foo-software/ghost-graphql
Advanced tools
Apollo GraphQL data sources, query resolvers, schemas, and types for Ghost
@foo-software/ghost-graphqlGraphQL data sources, query resolvers, schemas, and types for Ghost. This project provides the pieces to power an Apollo Server. @foo-software/ghost-graphql-server package imports modules from this project to provide an Apollo Server class with pre-defined options. You should use that project for a simple, quick solution if you don't need much customization. The exports of this package could be used in a custom implentation instead of using @foo-software/ghost-graphql-server. Includes types for TypeScript support (this project is written in TypeScript as a matter of fact).
Below are steps to get started with a custom implementation. If you're looking to spin up a standalone server, check out the guide here instead.
GHOST_URL environment variable.GHOST_API_KEY environment variable.We use tsc to generate types and you may need to match our TypeScript version if you have build errors. Check our package.json to find our TypeScript version.
All queries fetch from Ghost's Content API.
Resolvers with pagination and filter arguments can be found by inspecting the schema. Arguments mirror the parameters as documented.
Resources with pagination respond with a list of edges loosely based on the GraphQL connection spec provided by Relay. Pagination does not support cursors for the time being due to limitations from Ghost's Content API.
Filtering has evolved a bit in this project. We initially provided a filter argument which is an array of string type ([String]), however this led to unintuitive behavior as described in issue #8. Typing it in this way was naive in that it adds an or operator with multiple filters like filter: ["feature:true", "tag:some-tag"].
In order to leverage the full power of Ghost's filter expression syntax, it's best to now use the filterExpression argument (String type) instead of the original filter argument.
For example, if I wanted to fetch all feature posts and exclude tags with some-tag, I would use filterExpression like so:
filterExpression: "featured:true+tag:-some-tag"
Note the use of the and operator (+) and negation operator (-).
In most custom implementations, you'll only need to import resolvers. For implementations that are more complicated - it is possible to import any part of this package, including data sources, types, etc - just take a look at what is exported.
Before following the example below, make sure you've setup environment variables per the getting started guide.
Example assuming you've setup a server similar to the example found in Apollo Server docs.
import {
authorResolver as author,
AuthorsDataSource,
authorsResolver as authors,
pageResolver as page,
pagesResolver as pages,
PagesDataSource,
postResolver as post,
postsResolver as posts,
PostsDataSource,
settingsResolver as settings,
SettingsDataSource,
tagResolver as tag,
TagsDataSource,
tagsResolver as tags,
} from '@foo-software/ghost-graphql';
const server = new ApolloServer({
resolvers: {
Query: {
author,
authors,
page,
pages,
post,
posts,
settings,
tag,
tags,
},
},
dataSources: () => {
return {
authorsDataSource: new AuthorsDataSource(),
pagesDataSource: new PagesDataSource(),
postsDataSource: new PostsDataSource(),
settingsDataSource: new SettingsDataSource(),
tagsDataSource: new TagsDataSource(),
};
},
context: () => {
return {
token: 'foo',
};
},
});
| Name | Description | Type | Required | Default |
|---|---|---|---|---|
GHOST_API_KEY | A Ghost Content API key as documented here. | string | yes | -- |
GHOST_API_VERSION | The version of Ghost API as documented here. | enum { v3 = 'v3' }(only support for v3 at this time) | no | v3 |
GHOST_URL | A Ghost admin URL as documented here. Don't use a trailing slash. | string | yes | -- |
The schema structure can be seen in schema.graphql of the @foo-software/ghost-graphql package.
FAQs
Apollo GraphQL data sources, query resolvers, schemas, and types for Ghost
The npm package @foo-software/ghost-graphql receives a total of 28 weekly downloads. As such, @foo-software/ghost-graphql popularity was classified as not popular.
We found that @foo-software/ghost-graphql 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
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.