Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@graphile-contrib/pg-order-by-multi-column-index
Advanced tools
Order by multi-column indexes on PostGraphile connections
This Graphile Engine plugin adds enum values to the orderBy
argument on connections, allowing you to order by multi-column indexes.
Requires
postgraphile@^4.1.0
orgraphile-build-pg@^4.1.0
NOTE: If you're not using
ignoreIndexes: false
, then you probably don't need this plugin.
PostGraphile's ignoreIndexes: false
option only exposes the first column of each multi-column index on orderBy
. This prevents clients from sending queries with an array of column names/directions that can't make use of the multi-column index. This plugin adds enum values to orderBy
that match forward and backward scans of the index.
Example:
create index on p.person (last_name ASC, first_name ASC);
{
allPeople(orderBy: LAST_NAME_ASC__FIRST_NAME_ASC) {
nodes {
id
firstName
lastName
}
}
}
Append this plugin and the additional orderBy
enum values will be added to your schema.
yarn add postgraphile
yarn add @graphile-contrib/pg-order-by-multi-column-index
npx postgraphile --append-plugins @graphile-contrib/pg-order-by-multi-column-index
const express = require("express");
const { postgraphile } = require("postgraphile");
const PgOrderByMultiColumnIndexPlugin = require("@graphile-contrib/pg-order-by-multi-column-index");
const app = express();
app.use(
postgraphile(process.env.DATABASE_URL, "app_public", {
appendPlugins: [PgOrderByMultiColumnIndexPlugin],
graphiql: true,
})
);
app.listen(5000);
FAQs
Order by multi-column indexes on PostGraphile connections
We found that @graphile-contrib/pg-order-by-multi-column-index demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.