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.

Update link references

+14 -12
+3 -3
.circleci/config.yml
··· 20 20 keys: 21 21 - yarn-{{ .Branch }}-{{ checksum "yarn.lock" }} 22 22 - yarn-{{ .Branch }}- 23 - - yarn-master- 23 + - yarn-main- 24 24 - run: 25 25 name: Install Packages 26 26 command: yarn --frozen-lockfile --non-interactive ··· 108 108 - staging_site: 109 109 filters: 110 110 branches: 111 - ignore: master 111 + ignore: main 112 112 requires: 113 113 - setup 114 114 - production_site: 115 115 filters: 116 116 branches: 117 - only: master 117 + only: main 118 118 requires: 119 119 - setup
+5 -4
exchanges/graphcache/help.md
··· 1 1 This file (`exchanges/graphcache/help.md`) has been moved to `docs/graphcache/errors.md` 2 2 3 3 If you are looking at this in a browser 4 - * ...and your URL looks like this: `github.com/FormidableLabs/urql/blob/master/exchanges/graphcache/help.md#15` 5 - * ...in the URL, replace `exchanges/graphcache/help.md` with `docs/graphcache/errors.md` 6 - * ...and keep the `#15` 7 - * ...and then you will get help with your error! 4 + 5 + - ...and your URL looks like this: `github.com/FormidableLabs/urql/blob/main/exchanges/graphcache/help.md#15` 6 + - ...in the URL, replace `exchanges/graphcache/help.md` with `docs/graphcache/errors.md` 7 + - ...and keep the `#15` 8 + - ...and then you will get help with your error!
+2 -2
packages/preact-urql/README.md
··· 5 5 <img alt="Npm version" src="https://badgen.net/npm/v/@urql/preact" /> 6 6 </a> 7 7 <a href="https://travis-ci.com/JoviDeCroock/preact-urql"> 8 - <img alt="Test Status" src="https://api.travis-ci.com/JoviDeCroock/preact-urql.svg?branch=master" /> 8 + <img alt="Test Status" src="https://api.travis-ci.com/JoviDeCroock/preact-urql.svg?branch=main" /> 9 9 </a> 10 10 <a href="https://codecov.io/gh/JoviDeCroock/preact-urql"> 11 - <img alt="Test Coverage" src="https://codecov.io/gh/JoviDeCroock/preact-urql/branch/master/graph/badge.svg" /> 11 + <img alt="Test Coverage" src="https://codecov.io/gh/JoviDeCroock/preact-urql/branch/main/graph/badge.svg" /> 12 12 </a> 13 13 <a href="https://bundlephobia.com/result?p=@urql/preact"> 14 14 <img alt="Minified gzip size" src="https://img.shields.io/bundlephobia/minzip/@urql/preact.svg?label=gzip%20size" />
+1 -1
packages/react-urql/CHANGELOG.md
··· 107 107 to our suspense and concurrent-mode handling. Due to an upgrade to `wonka@^4.0.0` 108 108 this is a minor version though. 109 109 110 - In [v1.6.0](https://github.com/FormidableLabs/urql/blob/master/CHANGELOG.md#160) we believed to 110 + In [v1.6.0](https://github.com/FormidableLabs/urql/blob/main/CHANGELOG.md#160) we believed to 111 111 have solved all issues related to suspense and concurrent mode. However there were 112 112 still some remaining cases where concurrent mode behaved incorrectly. With the new 113 113 `useOperator` hook in [`react-wonka@2.0.0`](https://github.com/kitten/react-wonka) we believe
+2 -1
packages/react-urql/examples/1-getting-started/README.md
··· 8 8 9 9 ## Usage 10 10 11 - > Note: The quickest way to get started is to visit the live [CodeSandbox example](https://codesandbox.io/s/github/FormidableLabs/urql/tree/master/packages/react-urql/examples/1-getting-started). 11 + > Note: The quickest way to get started is to visit the live [CodeSandbox 12 + > example](https://codesandbox.io/s/github/FormidableLabs/urql/tree/main/packages/react-urql/examples/1-getting-started). 12 13 13 14 #### 1. Navigate to the example directory and install dependencies 14 15
+1 -1
packages/site/src/constants.js
··· 2 2 docsTitle: 'URQL', 3 3 githubIssues: 'https://www.github.com/FormidableLabs/urql/issues', 4 4 github: 'https://www.github.com/FormidableLabs/urql', 5 - readme: 'https://github.com/FormidableLabs/urql/blob/master/README.md', 5 + readme: 'https://github.com/FormidableLabs/urql/blob/main/README.md', 6 6 color: '#6B78B8', 7 7 googleAnalyticsId: 'UA-43290258-1', 8 8 };