Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

(hotfix) - Add missing eslint-disable pragma to react-urql

+4
+2
packages/react-urql/src/hooks/useQuery.ts
··· 1 + // eslint-disable react-hooks/exhaustive-deps 2 + 1 3 import { DocumentNode } from 'graphql'; 2 4 import { Source, pipe, subscribe, onEnd, onPush, takeWhile } from 'wonka'; 3 5 import { useState, useEffect, useCallback, useMemo } from 'react';
+2
packages/react-urql/src/hooks/useSubscription.ts
··· 1 + // eslint-disable react-hooks/exhaustive-deps 2 + 1 3 import { DocumentNode } from 'graphql'; 2 4 import { pipe, subscribe, onEnd } from 'wonka'; 3 5 import { useEffect, useState, useCallback, useMemo } from 'react';