Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add example of using an expression with external value via .select() #1866

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Babel config, used by Jest?
// Babel config, used by Jest
module.exports = {
plugins: ["@babel/plugin-transform-modules-commonjs"],
presets: [
Expand Down
24 changes: 24 additions & 0 deletions postgraphile/postgraphile/graphile.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/* eslint-disable import/no-unresolved */
import type { PgSelectSingleStep } from "@dataplan/pg";
import { TYPES } from "@dataplan/pg";
import PersistedPlugin from "@grafserv/persisted";
import { EXPORTABLE, exportSchema } from "graphile-export";
import { gql, makeExtendSchemaPlugin } from "graphile-utils";
Expand Down Expand Up @@ -199,6 +201,28 @@ const NonNullRelationsPlugin: GraphileConfig.Plugin = {
const preset: GraphileConfig.Preset = {
plugins: [
StreamDeferPlugin,
makeExtendSchemaPlugin((build) => {
const { sql } = build;
return {
typeDefs: gql`
extend type Person {
greet(greeting: String! = "Hello"): String
}
`,
plans: {
Person: {
greet($user: PgSelectSingleStep, { $greeting }) {
const placeholderSql = $user.placeholder($greeting, TYPES.text);
const alias = $user.getClassStep().alias;
return $user.select(
sql`${placeholderSql} || ', ' || ${alias}.name`,
TYPES.text,
);
},
},
},
};
}),
makeExtendSchemaPlugin({
typeDefs: gql`
extend type Query {
Expand Down