Socket
Socket
Sign inDemoInstall

apollo-utilities

Package Overview
Dependencies
Maintainers
4
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apollo-utilities - npm Package Versions

13
11

1.3.0-beta.0

Diff

apollo-bot
published 1.2.1 •

Changelog

Source

Apollo Cache In-Memory (1.2.10)

  • No changes.
apollo-bot
published 1.2.0 •

apollo-bot
published 1.2.0-rc.2 •

apollo-bot
published 1.2.0-rc.1 •

apollo-bot
published 1.1.3 •

apollo-bot
published 1.2.0-beta.1 •

apollo-bot
published 1.2.0-beta.0 •

benjamn
published 1.1.2 •

Changelog

Source

Apollo Cache (1.1.21)

  • No changes.
benjamn
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;
    }
    
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