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

apollo-cache

Package Overview
Dependencies
Maintainers
3
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apollo-cache - npm Package Versions

1
810

1.1.4

Diff

peggyrayzis
published 1.1.3 •

jbaxleyiii
published 1.1.2 •

Changelog

Source

Apollo Cache (1.1.21)

  • No changes.
jbaxleyiii
published 1.1.1 •

Changelog

Source

Apollo Utilities (1.1.1)

  • The flattenSelections helper function is no longer exported from apollo-utilities, since getDirectiveNames has been reimplemented without using flattenSelections, and flattenSelections has no clear purpose now. If you need the old functionality, use a visitor:

    import { visit } from "graphql/language/visitor";
    
    function flattenSelections(selection: SelectionNode) {
      const selections: SelectionNode[] = [];
      visit(selection, {
        SelectionSet(ss) {
          selections.push(...ss.selections);
        },
      });
      return selections;
    }
    
jbaxleyiii
published 1.1.0 •

Changelog

Source

Apollo Utilities (1.1.0)

  • Transformation utilities have been refactored to work with graphql 14.x. GraphQL AST's are no longer being directly modified. <br/> @hwillson in #4233
jbaxleyiii
published 1.0.2 •

Changelog

Source

Apollo Utilities (1.0.26)

  • No changes.
jbaxleyiii
published 1.0.1 •

Changelog

Source

Apollo Utilities (1.0.19)

  • No changes.
jbaxleyiii
published 1.0.0 •

jbaxleyiii
published 0.2.0-rc.3 •

jbaxleyiii
published 0.2.0-rc.2 •

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