Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@pothos/plugin-relay

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pothos/plugin-relay - npm Package Compare versions

Comparing version 3.31.0 to 3.32.0

6

CHANGELOG.md
# Change Log
## 3.32.0
### Minor Changes
- 75d13217: Export utils for formatting prisma cursors
## 3.31.0

@@ -4,0 +10,0 @@

2

package.json
{
"name": "@pothos/plugin-relay",
"version": "3.31.0",
"version": "3.32.0",
"description": "A Pothos plugin for adding relay style connections, nodes, and cursor based pagination to your GraphQL schema",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -570,8 +570,8 @@ # Relay Plugin

if (id.typename === 'User') {
return customUserLoader(id)
return customUserLoader(id);
}
// fallback to normal loading for everything else
return resolveNode(id)
}
return resolveNode(id);
},
},

@@ -582,3 +582,3 @@ nodesQueryOptions: {

if (id.typename === 'User') {
return customNodeLoader(id)
return customNodeLoader(id);
}

@@ -589,5 +589,5 @@

// we are resolving nodes one at a time here for simplicity
return resolveNodes([id])
})
}
return resolveNodes([id]);
});
},
},

@@ -594,0 +594,0 @@ },

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc