All Projects β†’ nksaraf β†’ Magiql

nksaraf / Magiql

Licence: mit
🌐 πŸ’« Simple and powerful GraphQL Client, love child of react-query ❀️ relay

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Magiql

Aws Mobile Appsync Sdk Ios
iOS SDK for AWS AppSync.
Stars: ✭ 231 (+413.33%)
Mutual labels:  graphql, graphql-client, codegen
Graphql Query Test Mock
Easily mock GraphQL queries in your Relay Modern / Apollo / any-other-GraphQL-client tests.
Stars: ✭ 49 (+8.89%)
Mutual labels:  graphql, relay, graphql-client
Grafoo
A GraphQL Client and Toolkit
Stars: ✭ 264 (+486.67%)
Mutual labels:  graphql, babel-plugin, graphql-client
Graphql.js
A Simple and Isomorphic GraphQL Client for JavaScript
Stars: ✭ 2,206 (+4802.22%)
Mutual labels:  graphql, relay, graphql-client
Babel Blade
(under new management!) ⛸️Solve the Double Declaration problem with inline GraphQL. Babel plugin/macro that works with any GraphQL client!
Stars: ✭ 266 (+491.11%)
Mutual labels:  graphql, babel-plugin, graphql-client
Gql
A GraphQL client in Python
Stars: ✭ 681 (+1413.33%)
Mutual labels:  graphql, graphql-client
Js Graphql Intellij Plugin
GraphQL language support for WebStorm, IntelliJ IDEA and other IDEs based on the IntelliJ Platform.
Stars: ✭ 686 (+1424.44%)
Mutual labels:  graphql, relay
Graphqlgen
βš™οΈ Generate type-safe resolvers based upon your GraphQL Schema
Stars: ✭ 796 (+1668.89%)
Mutual labels:  graphql, codegen
Aws Mobile Appsync Sdk Js
JavaScript library files for Offline, Sync, Sigv4. includes support for React Native
Stars: ✭ 806 (+1691.11%)
Mutual labels:  graphql, graphql-client
Graphqlbundle
This bundle provides tools to build a complete GraphQL server in your Symfony App.
Stars: ✭ 628 (+1295.56%)
Mutual labels:  graphql, relay
Graphene
GraphQL framework for Python
Stars: ✭ 6,964 (+15375.56%)
Mutual labels:  graphql, relay
Graphql Java Codegen Maven Plugin
Maven plugin for graphql-java-codegen
Stars: ✭ 17 (-62.22%)
Mutual labels:  graphql, codegen
Gqlgen
go generate based graphql server library
Stars: ✭ 6,880 (+15188.89%)
Mutual labels:  graphql, codegen
Urql
The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
Stars: ✭ 6,604 (+14575.56%)
Mutual labels:  graphql, graphql-client
Adrenaline
Simple Relay alternative
Stars: ✭ 720 (+1500%)
Mutual labels:  graphql, relay
Este
This repo is suspended.
Stars: ✭ 5,467 (+12048.89%)
Mutual labels:  graphql, relay
Graphql Code Generator
A tool for generating code based on a GraphQL schema and GraphQL operations (query/mutation/subscription), with flexible support for custom plugins.
Stars: ✭ 7,993 (+17662.22%)
Mutual labels:  graphql, codegen
Graphql Config
One configuration for all your GraphQL tools (supported by most tools, editors & IDEs)
Stars: ✭ 883 (+1862.22%)
Mutual labels:  graphql, relay
Kikstart Graphql Client
πŸš€ Small NodeJS Wrapper around apollo-client that provides easy access to running queries, mutations and subscriptions.
Stars: ✭ 27 (-40%)
Mutual labels:  graphql, graphql-client
Learnrelay
Learn Relay - A comprehensive introduction to Relay (created by Graphcool)
Stars: ✭ 887 (+1871.11%)
Mutual labels:  graphql, relay

magiql

A bunch of simple but magical React hooks to work with GraphQL.
powered by react-query, inspired by relay and urql

A set of React hooks to work with GraphQL data. magiql stands on the shoulders of massive giants in the data-synchronization and state-management space, both conceputally and some as actual dependencies. It uses the amazing react-query library as its data-fetching and synchronization layer which forms the foundation of this library. Seriously, without react-query, this won't be any good. The API is also very similar to react-query and will be familiar to the users. It's just slightly tweaked to make it easier to work with GraphQL. On top of the these great synchronization primitives, we add normalized caching which allows us to enable the amazing developer experience that relay provides without any of the restrictions and buy-in required.

magiql is designed to be easy to adopt (moving from vanilla react-query or other GraphQL clients). Most features (like normalized caching, recoil-based store implementation, relay-compiler and build-time optimizations) are completely optional and configurable. But everything is included under one installed dependency so that you don't have to install things again and again (don't worry, the different entry-points are code-split and you will only include things that you actually use). You can start using magiql as a GraphQL Client immediately and it grows to cater to your needs as they arise by allowing extensive customization and incrementally adoption of more speciliazed features.

Features

Most of the features that we are providing are thanks to react-query. Using inspiration from relay and urql, we are able to provide a bunch of additional awesome GraphQL-specific features that you can find below

  • Auto Caching + Refetching (stale-while-revalidate, Window Refocus, Polling/Realtime)
  • Parallel + Dependent Queries
  • "Lazy" Queries
  • Request Deduplication
  • Paginated + Cursor-based Queries
  • Load-More + Infinite Scroll Queries w/ Scroll Recovery
  • Normalized caching + Entity Manipulation (multiple store implementations (recoil, react-query)
  • Fragment-first GraphQL approach (relay-style useFragment hook)
  • Request Cancellation
  • Mutations + Reactive Query Refetching
  • Optimistic Updates
  • Exchanges API to customize execution (logging, persisted queries, authentication, JWT token refresh)
  • React Suspense Support (must be enabled with React Concurrent Mode)
  • Dedicated Devtools

Using the relay-compiler (via magiql/babel or magiql cli) is required to unlock some more awesome features,

  • Schema-aware Normalized caching
  • Typescript Support + Code generation
  • Build-time GraphQL optimizations
  • Skip parsing at runtime

Note: You don't need a Relay-compliant server to get all these features in magiql. It will work with any GraphQL server. It also doesn't require you to commit to React Concurrent Mode which the new relay hooks require.

There is an example for this: https://magiql.vercel.app. You can see the components and pages folder for example code.

Warning: This is still in alpha stage and docs and examples are in the works

Documentation

Basic Usage
import {
  GraphQLClientProvider,
  GraphQLClient,
  useQuery,
  graphql,
} from "magiql";

const client = new GraphQLClient({
  endpoint: "https://swapi-graphql.netlify.app/.netlify/functions/index",
});

const People = () => {
  const { data, status, error } = useQuery(
    graphql`
      query PeopleQuery($limit: Int) {
        allPeople(first: $limit) {
          edges {
            node {
              id
              name
              homeworld {
                name
              }
            }
          }
        }
      }
    `,
    {
      variables: {
        limit: 10,
      },
    }
  );

  if (status === "loading") {
    return <div>Loading...</div>;
  }

  if (error) {
    return <div>{error.message}</div>;
  }

  return (
    <div>
      {data
        ? data.allPeople?.edges?.map((edge) => (
            <div key={edge.node.id}>
              <b>{edge.node.name}</b> ({edge.node.homeworld?.name})
            </div>
          ))
        : null}
    </div>
  );
};

const App = () => {
  return (
    <GraphQLClientProvider client={client}>
      <People />
    </GraphQLClientProvider>
  );
};
Installation

To install magiql with all its features to your project, run the following commands based on if you use yarn or npm. The single dependency includes multiple entry points to code-split features and not require user to install more dependencies.

yarn add magiql graphql

# or
npm install magiql graphql --save
Using the Relay compiler

This is required to use fragments and normalized caching

To use the relay-compiler, add magiql/babel to your Babel config as a plugin, eg. in babel.config.js. The magiql Babel plugin is just a wrapper around babel-plugin-relay to include everything in one dependency. It also runs the relay-compiler in watch mode by default.

module.exports {
  presets: [ ... ],
  plugins: ["magiql/babel", ... ]
}

Or, you can run the compiler from cli using the magiql command (use magiql --watch for watch mode, recommended for development). This is also just a wrapper around the relay-compiler. You still need to add the Babel plugin, but can disable running the compiler with Babel, but setting runWithBabel to false in magiql.config.js.

magiql.config.js

If need to customize the Relay compiler away from the defaults (specified below), add a magiql.config.js file in the root directory. It is very similar to relay.config.js, but tailored a little for magiql.

module.exports = {
  schema: "./schema.graphql",
  src: "./",
  artifactDirectory: "generated",
  extensions: ["ts", "tsx", "js", "jsx", "graphql"],
  quiet: false,
  watch: boolean,
  runWithBabel: true,
  language: "typescript",
  include: ["**"],
  exclude: [
      "**/node_modules/**",
      "**/__mocks__/**",
      `**/generated/**`,
    ];
 }

Working with fragments

With GraphQL, the biggest game changer when used with React are fragments. The useFragment hook introduced by relay makes it delightful to declare the data needs of your components. These are some of the advantages:

  • Date requirements completely localized and encapsulated in your component
  • Declarative, modular and composable
  • Fragments can include nest more fragments and fits naturally with the React component model
  • Don't need to add everything to the top level query
  • Easy to ensure type safety (using relay-compiler generated files)
  • Data available independent of how the data is fetched by some parent component
  • Components only subscribe to the precise part of the data store that it cares about (down to the field level).

Usage (with fragments)

// Person.tsx
import React from "react";
import { useFragment, graphql } from "magiql";
import { Person_person } from "generated/Person_person.graphql";

export function Person({ person }: { person: Person_person }) {
  const data = useFragment(
    graphql`
      fragment Person_person on Person {
        name
        homeworld {
          name
        }
      }
    `,
    person
  );

  return (
    <div>
      <b>{data.name}</b> ({data.homeworld?.name})
    </div>
  );
}
// People.tsx
import React from "react";
import { useQuery, graphql } from "magiql";
import { PeopleQuery } from "generated/PeopleQuery.graphql";
import { Person } from "./Person";

export const People = () => {
  const { data, status, error } = useQuery<PeopleQuery>(
    graphql`
      query PeopleQuery($limit: Int) {
        allPeople(first: $limit) {
          edges {
            node {
              id
              ...Person_person
            }
          }
        }
      }
    `,
    {
      variables: {
        limit: 10,
      },
    }
  );

  return (
    <div>
      {data
        ? data.allPeople?.edges?.map((edge) => <Person person={edge.node} />)
        : null}
    </div>
  );
};
import { GraphQLClientProvider, GraphQLClient } from "magiql";
import { createRecoilStore } from "magiql/recoil-store";
import { People } from "./People";

const client = new GraphQLClient({
  endpoint: "https://swapi-graphql.netlify.app/.netlify/functions/index",
  useStore: createRecoilStore(),
});

const App = () => {
  return (
    <GraphQLClientProvider client={client}>
      <People />
    </GraphQLClientProvider>
  );
};

These features and accompanying restrictions provide an excellent authoring experience that almost seems magical when it works.

Typescript Support

Using the Relay compiler, magiql can generate types for all your operations since it has access to your schema as well. These types are generated and updated by the compiler, so ensure that it's running in watch mode (either through Babel or the cli) when you are developing.

If the name of query is HomeQuery, then import type as such:

import { HomeQuery } from "generated/HomeQuery.graphql";
import { useQuery } from "magiql";

const { data, error } = useQuery<HomeQuery>(graphql`
  query HomeQuery {
    currentHome {
      name
    }
  }
`);
  • Types are imported from the folder specified as artifactDirectory in magiql.config.js (Default: generated).
  • Typescript support is enabled by default. To disable it, set language to javascript in magiql.config.js.
  • If not using the compiler, you can provide type parameters to each operation with the following sample signature
type HomeQuery = {
  response: {
    currentHome: {
      name: string;
    };
  };
  variables: {};
};
Customizing the GraphQL Client

Coming soon

Exchanges

Coming soon

Normalized caching

To fully unlock fragments, including optimistic responses and cache manipulation of entities, we needed a normalized cache of our data. We call this cache, the store in magiql.

  • Each entity is identified and stored once.
  • Component that access entities subscribe to changes to that entity
  • Implementation can be customized when creating a GraphQLClient via the useStore option, we provide three implementations of our own (using recoil and react-query's QueryCache)
  • Provide your own getDataID to these stores to control how id's are determined and then let magiql handle the rest for managing access.
import { GraphQLClient } from "magiql";
import { createRecoilStore } from "magiql/recoil-store";

const client = new GraphQLClient({
  endpoint: "...",
  useStore: createRecoilStore({
    // optional, by default it uses the `id` field if available otherwise falls back to an unnormalized id
    // this is the default function
    getDataID: (record, type) => (record.id ? `${type}:${record.id}` : null),
  }),
});

Store Implementations

  • Recoil createRecoilStore
    • Recommended if already working with the compiler and the Babel plugin
    • Each field of an entity is stored as atom, entities and fragments are both selectors on the atoms
    • Components subscribe to fields on entities (very granular and precise)
    • Customize how to determine id for each entity
  • React Query's QueryCache as store createNormalizedQueryCacheStore
    • Each entity is a query with the entity's id as the key
    • Components subscribe to entities (not field-level subscriptions)
    • Same API as createRecoilStore
  • React Query's QueryCache (unnormalized) createQueryCacheStore
    • Client's QueryCache stores data attached to queries, and doesnt identify entities
    • Doesn't allow cache manipulation with entities
    • No options required since doesn't actually normally, but will still work with Fragments
Naming convention for operations

Relay allows us to use fragments in queries and mutations without importing them as modules. For this to work, the names must be globally unique. It is also good habit to name the fragments and queries based on the components and props that use them. Thus, relay enforces a few conventions when it comes to naming your operations. These conventions are quite helpful and make your lives easier:

  • Queries must be named query ${ModuleName}Query { ... }, eg, a query in file Home.tsx can be named HomeQuery or HomeRoomsQuery
  • Mutations must be named mutation ${ModuleName}Mutation { ... }, eg, a mutation in file Home.tsx can be named HomeMutation or HomeDestroyMutation
  • Fragments must be named fragment ${ModuleName}_${propName} on type { ... }, eg, a fragment in file HomeDetails.tsx where the prop for the fragment ref is home can be named HomeDetails_home
Devtools

You can use the magiql Devtools which are inspired by react-query-devtools as follows:

import React from "react";
import { GraphQLClient, GraphQLClientProvider } from "magiql";
import GraphQLDevtools from "magiql/devtools";

export default function App({ children }) {
  return (
    <GraphQLClientProvider client={client}>
      {children}
      <GraphQLDevtools defaultIsOpen defaultTab="store" />
    </GraphQLClientProvider>
  );
}

API

The following is the core API for magiql. With the help of amazing libraries like react-query, relay-compiler and recoil, we are able to provide the following features as a GraphQL client. The runtime is your familiar react-query api. There is also an optional build time setup that unlocks fragments and normalized store.

useQuery

You can use the magiql Devtools which are inspired by react-query-devtools as follows:

import React from "react";
import { GraphQLClient, GraphQLClientProvider } from "magiql";
import GraphQLDevtools from "magiql/devtools";

export default function App({ children }) {
  return (
    <GraphQLClientProvider client={client}>
      {children}
      <GraphQLDevtools defaultIsOpen defaultTab="store" />
    </GraphQLClientProvider>
  );
}

Runtime

  • useQuery(query, { variables, ...options }), usePaginatedQuery and useInfiniteQuery: Data fetching patterns for GraphQL queries with numerous ways to customize them for refetching on different events
    • All options from react-query are valid in the second argument
    • No fetch function or query key required
    • Stale-while-revalidate caching strategy
    • Request deduplication
    • Infinite queries
    • Paginated queries
    • Parallel and dependent queries
    • Lazy queries
    • Window Focus refetching
    • Network Status refetching
    • Polling/interval refetching
    • Normalized caching (uses relay-compiler)
  • useMutation: a hook that provides a way to run GraphQL mutations (updates) on the server state conviniently with optmistic updates from your React app
    • Optimistic updates
    • Cache manipulation for entities in store
  • useFragment: a hook that allows you to properly encapsulate the date requirements of a component within it by subscribing to a GraphQL Fragment which resolves when provided a ref from the parent component via props
    • Field-level subscription for fragments, only rerenders when that changes
    • Allows nesting of fragments, great deal of composability and reusability
    • Doesn't need to be responsible for fetching data (gets reference from parent component)
    • Requires that you run the relay-compiler with either the Babel plugin or the cli command.
  • useGraphQLClient: Access the underlying GraphQLClient
    • Create new client using GraphQLClient class
    • Add the GraphQLClientProvider with an instance of a GraphQLClient
    • Can customize react-query config by using `new GraphQLClient({ endpoint: "...", queryConfig: {...} })
  • Exchanges based API for customizing query execution behaviour, allows for,
    • logging, authentication, refreshing tokens, normalization, error handling
  • React Suspense support
  • React Native support
    • Should work out of the box in expo or wherever the react-native package.json property is resolved

Foundation and inspirations

Here are some of the big dependencies and inspirations for magiql:

  • react-query

    • Data-fetching (network) layer
    • Stale-while-revalidate caching strategy
    • Request deduplication
    • Window Focus refetching
    • Network Status refetching
    • Infinite queries
    • Paginated queries
    • Parallel and dependent queries
    • Lazy queries
    • Polling/interval refetching
    • React Suspense support
    • Normalized caching (with the help of the relay compiler)
    • Differences:
      • No query key required (GraphQL document name + variables form the key)
      • No query fetch function required (provided by the client with customization options)
      • Pass GraphQL document as first argument
  • relay-compiler

    • Build time optimizations (flatten fragments, add id fields, etc.)
    • Code-generation for types (for full typescript support)
    • Using fragments effectively with optimizations
    • Concept: useFragment hook (game changer!) to declaratively define data needs for components independent of the fetching of the data
    • Implementation: relay-runtime inspiration for (de)normalizating data
    • magiql allows us to use the relay hooks API without jumping to React Suspense (can't use the new relay hooks without that)
    • Do not need relay compliant server (will work with any GraphQL server)
  • recoil (opt-in)

    • Alternative implementation for normalized cache for data
    • Granular subscription (field-level) to data for fragments and queries based on exactly what they ask
    • similar implementation for jotai is also being worked on
  • urql (inspiration)

    • Concept: exchange API to customize execution of graphql request
    • Allowed easy ways to add logging, persisted queries, auth (with token refresh support)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].