Skip to content

Commit

Permalink
Fix accidental loss of '-'
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie committed Sep 27, 2024
1 parent a47794a commit 68dc392
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions postgraphile/postgraphile/src/presets/relay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,20 @@ export const PgRelayPlugin: GraphileConfig.Plugin = {
schema: {
globalBehavior: [
"node",

"connection",
"-list",

"-query:resource:single",

"nodeId:filterBy",

"nodeId:resource:update",
"constraint:resource:update",
"-constraint:resource:update",

"nodeId:resource:delete",
"constraint:resource:delete",
"-constraint:resource:delete",

"nodeId:insert",
"nodeId:update",
"nodeId:base",
Expand Down

0 comments on commit 68dc392

Please sign in to comment.