Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
graphile-build-pg
Advanced tools
Build a GraphQL schema by reflection over a PostgreSQL schema. Easy to customize since it's built with plugins on graphile-build
graphile-build-pg
is a collection of Graphile Engine plugins that allow you
to extend your GraphQL schema with high-performance types and fields based on
resources found in your PostgreSQL database schema.
Thanks to Graphile Engine's advanced query
look-ahead features,
the plugins in this package do not exhibit the N+1 query problem common in
many database-based GraphQL APIs. For all but the flattest GraphQL queries
these plugins typically outperform DataLoader
-based solutions.
An example of an application built on graphile-build-pg
is
PostGraphile which with one
command connects to your PostgreSQL database and provides a full highly
performant standards-compliant GraphQL API.
It is recommended that you use PostGraphile directly unless you really want to get low level access to this library.
If you prefer to use the plugins yourself it's advised that you use the
defaultPlugins
export from graphile-build-pg
and then create a new array
based on that into which you may insert or remove specific plugins. This is
because it is ordered in a way to ensure the plugins work correctly (and we
may still split up or restructure the plugins).
defaultPlugins
An array of graphql-build plugins in the correct order to generate a
well-thought-out GraphQL object tree based on your PostgreSQL schema. This is
the array that postgraphile-core
uses.
import { defaultPlugins, getBuilder } from "graphile-build";
import { defaultPlugins as pgDefaultPlugins } from "graphile-build-pg";
async function getSchema(
pgConfig = process.env.DATABASE_URL,
pgSchemas = ["public"],
additionalPlugins = []
) {
return getBuilder(
[...defaultPlugins, ...pgDefaultPlugins, ...additionalPlugins],
{
pgConfig,
pgSchemas,
pgExtendedTypes: true,
}
);
}
4.4.0-beta.1 (2019-02-28)
FAQs
Build a GraphQL schema by reflection over a PostgreSQL schema. Easy to customize since it's built with plugins on graphile-build
The npm package graphile-build-pg receives a total of 26,870 weekly downloads. As such, graphile-build-pg popularity was classified as popular.
We found that graphile-build-pg 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.