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

rivet-graphql

Package Overview
Dependencies
Maintainers
4
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rivet-graphql - npm Package Compare versions

Comparing version 0.5.0-canary-20230119003206 to 0.5.0-canary-20230119004945

2

CHANGELOG.md
# rivet-graphql
## 0.5.0-canary-20230119003206
## 0.5.0-canary-20230119004945

@@ -5,0 +5,0 @@ ### Minor Changes

@@ -19,3 +19,3 @@ declare function _exports(url: string, options: import("graphql-request/dist/types.dom").RequestInit & {

export type FragmentSpec = {
fragment?: string;
fragment?: string | DocumentNode;
dependencies?: {

@@ -22,0 +22,0 @@ fragmentSpec?: FragmentSpec;

@@ -12,3 +12,3 @@ //@ts-check

* @typedef {Object} FragmentSpec
* @property {string} [fragment]
* @property {string | DocumentNode} [fragment]
* @property {{ fragmentSpec?: FragmentSpec }[]} [dependencies]

@@ -92,3 +92,7 @@ * @property {Record<string, any>} [requiredVariables]

if (component.fragment) {
acc.push(component.fragment)
acc.push(
typeof component.fragment === 'string'
? component.fragment
: print(component.fragment)
)
}

@@ -95,0 +99,0 @@

{
"name": "rivet-graphql",
"description": "a relay-like graphql data loading system for nextjs",
"version": "0.5.0-canary-20230119003206",
"version": "0.5.0-canary-20230119004945",
"author": "Jeff Escalante",

@@ -6,0 +6,0 @@ "bugs": {

Sorry, the diff of this file is not supported yet

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