Socket
Socket
Sign inDemoInstall

@foo-software/ghost-graphql

Package Overview
Dependencies
252
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @foo-software/ghost-graphql

Apollo GraphQL data sources, query resolvers, schemas, and types for Ghost


Version published
Weekly downloads
35
Maintainers
1
Created
Weekly downloads
 

Readme

Source

@foo-software/ghost-graphql

GraphQL 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).

Table of Contents

Getting Started

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.

TypeScript Dependencies

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.

Ghost Content API

All queries fetch from Ghost's Content API.

Pagination and Filtering

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.

Filter Expressions

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 (-).

Custom Implementation Example

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

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',
    };
  },
});

Environment Variables

NameDescriptionTypeRequiredDefault
GHOST_API_KEYA Ghost Content API key as documented here.stringyes--
GHOST_API_VERSIONThe version of Ghost API as documented here.enum { v3 = 'v3' }(only support for v3 at this time)nov3
GHOST_URLA Ghost admin URL as documented here. Don't use a trailing slash.stringyes--

Schema

The schema structure can be seen in schema.graphql of the @foo-software/ghost-graphql package.

Keywords

FAQs

Last updated on 05 Jan 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc