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

@data-eden/athena

Package Overview
Dependencies
Maintainers
4
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@data-eden/athena

## Installation

  • 0.17.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
increased by150%
Maintainers
4
Weekly downloads
 
Created
Source

@data-eden/athena

Installation

yarn add @data-eden/athena @data-eden/codegen @data-eden/cache @data-eden/network @data-eden/react

Usage

import { babelPlugin } from '@data-eden/codegen';

const config = {
  plugins: [[babelPlugin, { tagName: 'graphql' }]],
};

export default config;

Ethos

This library has several key components:

GraphQL Client The main interface of Athena is a GraphQL client that closely follows the API of urql. This client uses a custom fetch function from @data-eden/network and includes a caching layer built on top of @data-eden/cache.

Reactivity Layer Athena also includes a reactivity layer that keeps all GraphQL entities synchronized with the cache. This layer is built around the concept of Signals, which is explained in more detail in the README for @signalis/core.

The reactivity layer operates on two main principles:

  • All entities are wrapped in proxies that provide reactivity while hiding the actual signal from the consumer. This allows GraphQL response data to be interacted with as if it were a regular object.

  • All GraphQL responses are broken into entities, normalized, and cached so that all relationships between entities are encoded via the normalized store and kept in sync via the reactive proxy. The cache processes all GraphQL responses, ensuring that the underlying entities and their relationships are kept in sync while maintaining referential stability.

Query Metadata

  • Paths of referenced entities In order to correctly distinguish cache entries like 'urn:author:1' as either strings or references. More advanced cases to handle:
    • arrays of references
    • graphql unions (mandate/include __typename) with fragments that have type conditions
    • arrays of graphql unions
    • ?? non-union cases with fragments with type conditions (e.g. for interfaces)

Consider e.g.

{
  foo {
    bar {
      __typename

      ... on TypeA {
        a
        b
        c
      }

      ... on TypeB {
        d
        e
        f
      }
    }
  }
}
  • Unconventional ID Field Names In order to identify whether an object should be a cached entity we need to know what the ID field is. We only need to stash extra information for unconventional names (e.g. if the whole API always uses id or urn then we don't need to copy that data).
  • $!prod.fields Field masking during non-production environments.

FAQs

Package last updated on 26 Jul 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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