Skip to content

Commit 05d9731

Browse files
authored
Switch to use stable SWAPI endpoint in examples (#10242)
1 parent 35d9365 commit 05d9731

File tree

33 files changed

+43
-48
lines changed

33 files changed

+43
-48
lines changed

examples/react/apollo-client-swc-plugin/codegen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { CodegenConfig } from '@graphql-codegen/cli';
33

44
const config: CodegenConfig = {
5-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
5+
schema: 'https://graphql.org/graphql/',
66
documents: ['src/**/*.tsx', '!src/gql/**/*'],
77
generates: {
88
'./src/gql/': {

examples/react/apollo-client-swc-plugin/src/main.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import App from './App';
55
import { ApolloClient, InMemoryCache, ApolloProvider } from '@apollo/client';
66

77
const client = new ApolloClient({
8-
uri: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
8+
uri: 'https://graphql.org/graphql/',
99
cache: new InMemoryCache(),
1010
});
1111

examples/react/apollo-client/codegen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { type CodegenConfig } from '@graphql-codegen/cli';
33

44
const config: CodegenConfig = {
5-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
5+
schema: 'https://graphql.org/graphql/',
66
documents: ['src/**/*.tsx'],
77
generates: {
88
'./src/gql/': {

examples/react/apollo-client/src/main.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import App from './App';
55
import { ApolloClient, InMemoryCache, ApolloProvider } from '@apollo/client';
66

77
const client = new ApolloClient({
8-
uri: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
8+
uri: 'https://graphql.org/graphql/',
99
cache: new InMemoryCache(),
1010
});
1111

examples/react/http-executor/codegen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { type CodegenConfig } from '@graphql-codegen/cli';
33

44
const config: CodegenConfig = {
5-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
5+
schema: 'https://graphql.org/graphql/',
66
documents: ['src/**/*.tsx'],
77
generates: {
88
'./src/gql/': {

examples/react/http-executor/src/App.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Film from './Film';
55
import { graphql, DocumentType } from './gql';
66

77
const executor = buildHTTPExecutor({
8-
endpoint: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
8+
endpoint: 'https://graphql.org/graphql/',
99
});
1010

1111
const AllFilmsWithVariablesQuery = graphql(/* GraphQL */ `
@@ -21,7 +21,7 @@ const AllFilmsWithVariablesQuery = graphql(/* GraphQL */ `
2121
`);
2222

2323
// we could also define a client:
24-
// `const client = new GraphQLClient('https://swapi-graphql.netlify.app/.netlify/functions/index')`
24+
// `const client = new GraphQLClient('https://graphql.org/graphql/')`
2525
// and use:
2626
// `client.request(allFilmsWithVariablesQueryDocument, { first: 10 })`
2727

examples/react/nextjs-swr/codegen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { CodegenConfig } from '@graphql-codegen/cli';
33

44
const config: CodegenConfig = {
5-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
5+
schema: 'https://graphql.org/graphql/',
66
documents: ['components/**/*.tsx', 'pages/**/*.tsx'],
77
generates: {
88
'./gql/': {

examples/react/nextjs-swr/hooks/use-query.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ASTNode, ExecutionResult, Kind, OperationDefinitionNode } from 'graphql
55
import useSWR from 'swr';
66

77
const executor = buildHTTPExecutor({
8-
endpoint: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
8+
endpoint: 'https://graphql.org/graphql/',
99
});
1010

1111
const isOperationDefinition = (def: ASTNode): def is OperationDefinitionNode => def.kind === Kind.OPERATION_DEFINITION;

examples/react/tanstack-react-query/codegen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { CodegenConfig } from '@graphql-codegen/cli';
33

44
const config: CodegenConfig = {
5-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
5+
schema: 'https://graphql.org/graphql/',
66
documents: ['src/**/*.tsx', '!src/gql/**/*'],
77
generates: {
88
'./src/gql/': {

examples/react/tanstack-react-query/src/use-graphql.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function useGraphQL<TResult, TVariables>(
1414
variables,
1515
] as const,
1616
async ({ queryKey }) => {
17-
return fetch('https://swapi-graphql.netlify.app/.netlify/functions/index', {
17+
return fetch('https://graphql.org/graphql/', {
1818
method: 'POST',
1919
headers: {
2020
'Content-Type': 'application/json',

examples/react/urql/codegen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { type CodegenConfig } from '@graphql-codegen/cli';
33

44
const config: CodegenConfig = {
5-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
5+
schema: 'https://graphql.org/graphql/',
66
documents: ['src/**/*.tsx', '!src/gql/**/*'],
77
generates: {
88
'./src/gql/': {

examples/react/urql/src/main.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import './main.css';
66
import App from './App';
77

88
const client = createClient({
9-
url: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
9+
url: 'https://graphql.org/graphql/',
1010
});
1111

1212
const root = ReactDOM.createRoot(document.getElementById('app') as HTMLElement);

examples/typescript-esm/codegen.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/** @type {import("@graphql-codegen/cli").CodegenConfig} */
44
const config = {
5-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
5+
schema: 'https://graphql.org/graphql/',
66
documents: ['src/**/*.ts'],
77
emitLegacyCommonJSImports: false,
88
generates: {

examples/typescript-esm/src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const AllPeopleWithVariablesQueryDocument = graphql(/* GraphQL */ `
3232
}
3333
`);
3434

35-
const apiUrl = 'https://swapi-graphql.netlify.app/.netlify/functions/index';
35+
const apiUrl = 'https://graphql.org/graphql/';
3636

3737
executeOperation(apiUrl, AllPeopleQueryDocument).then(res => {
3838
if (res.errors) {

examples/typescript-graphql-request/codegen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { CodegenConfig } from '@graphql-codegen/cli';
33

44
const config: CodegenConfig = {
5-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
5+
schema: 'https://graphql.org/graphql/',
66
documents: ['src/**/*.ts'],
77
generates: {
88
'./src/gql/': {

examples/typescript-graphql-request/src/main.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable no-console */
21
import { GraphQLClient } from 'graphql-request';
32
import { graphql } from './gql';
43
import { AllPeopleQueryQuery } from './gql/graphql';
@@ -33,7 +32,7 @@ const AllPeopleWithVariablesQueryDocument = graphql(/* GraphQL */ `
3332
}
3433
`);
3534

36-
const apiUrl = 'https://swapi-graphql.netlify.app/.netlify/functions/index';
35+
const apiUrl = 'https://graphql.org/graphql/';
3736

3837
const client = new GraphQLClient(apiUrl);
3938

examples/vite/vite-react-cts/codegen.cts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { type CodegenConfig } from '@graphql-codegen/cli';
33

44
const config: CodegenConfig = {
5-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
5+
schema: 'https://graphql.org/graphql/',
66
documents: ['src/**/*.tsx'],
77
generates: {
88
'./src/gql/': {

examples/vite/vite-react-cts/src/main.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { graphql } from './gql';
55
import { ApolloClient, InMemoryCache, ApolloProvider, useQuery } from '@apollo/client';
66

77
const client = new ApolloClient({
8-
uri: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
8+
uri: 'https://graphql.org/graphql/',
99
cache: new InMemoryCache(),
1010
});
1111

examples/vite/vite-react-mts/codegen.mts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { type CodegenConfig } from '@graphql-codegen/cli';
33

44
const config: CodegenConfig = {
5-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
5+
schema: 'https://graphql.org/graphql/',
66
documents: ['src/**/*.tsx'],
77
generates: {
88
'./src/gql/': {

examples/vite/vite-react-mts/src/main.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { graphql } from './gql';
55
import { ApolloClient, InMemoryCache, ApolloProvider, useQuery } from '@apollo/client';
66

77
const client = new ApolloClient({
8-
uri: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
8+
uri: 'https://graphql.org/graphql/',
99
cache: new InMemoryCache(),
1010
});
1111

examples/vite/vite-react-ts/codegen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { type CodegenConfig } from '@graphql-codegen/cli';
33

44
const config: CodegenConfig = {
5-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
5+
schema: 'https://graphql.org/graphql/',
66
documents: ['src/**/*.tsx'],
77
generates: {
88
'./src/gql/': {

examples/vite/vite-react-ts/src/main.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { graphql } from './gql';
55
import { ApolloClient, InMemoryCache, ApolloProvider, useQuery } from '@apollo/client';
66

77
const client = new ApolloClient({
8-
uri: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
8+
uri: 'https://graphql.org/graphql/',
99
cache: new InMemoryCache(),
1010
});
1111

examples/vue/apollo-composable/codegen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { CodegenConfig } from '@graphql-codegen/cli';
22

33
const config: CodegenConfig = {
4-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
4+
schema: 'https://graphql.org/graphql/',
55
documents: ['src/**/*.vue', '!src/gql/**/*'],
66
generates: {
77
'./src/gql/': {

examples/vue/apollo-composable/src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ApolloClient, HttpLink, InMemoryCache } from '@apollo/client/core';
55
import App from './App.vue';
66

77
const httpLink = new HttpLink({
8-
uri: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
8+
uri: 'https://graphql.org/graphql/',
99
});
1010

1111
// Create the apollo client

examples/vue/urql/codegen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { CodegenConfig } from '@graphql-codegen/cli';
22

33
const config: CodegenConfig = {
4-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
4+
schema: 'https://graphql.org/graphql/',
55
documents: ['src/**/*.vue', '!src/gql/**/*'],
66
generates: {
77
'./src/gql/': {

examples/vue/urql/src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import App from './App.vue';
55
const app = createApp(App);
66

77
app.use(urql, {
8-
url: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
8+
url: 'https://graphql.org/graphql/',
99
exchanges: [cacheExchange, fetchExchange],
1010
});
1111

examples/vue/villus/codegen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { CodegenConfig } from '@graphql-codegen/cli';
22

33
const config: CodegenConfig = {
4-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
4+
schema: 'https://graphql.org/graphql/',
55
documents: ['src/**/*.vue', '!src/gql/**/*'],
66
generates: {
77
'./src/gql/': {

examples/vue/villus/src/App.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import FilmItem from './components/FilmItem.vue';
55
import { computed } from 'vue';
66
77
useClient({
8-
url: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
8+
url: 'https://graphql.org/graphql/',
99
});
1010
1111
const { data } = useQuery({

packages/presets/client/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@
566566
import { CodegenConfig } from '@graphql-codegen/cli'
567567

568568
const config: CodegenConfig = {
569-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
569+
schema: 'https://graphql.org/graphql/',
570570
documents: ['src/**/*.tsx'],
571571
ignoreNoDocuments: true, // for better experience with the watcher
572572
generates: {
@@ -614,7 +614,7 @@
614614
import { CodegenConfig } from '@graphql-codegen/cli'
615615

616616
const config: CodegenConfig = {
617-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
617+
schema: 'https://graphql.org/graphql/',
618618
documents: ['src/**/*.tsx'],
619619
ignoreNoDocuments: true, // for better experience with the watcher
620620
generates: {

packages/presets/client/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export type ClientPresetConfig = {
2525
* @exampleMarkdown
2626
* ```tsx
2727
* const config = {
28-
* schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
28+
* schema: 'https://graphql.org/graphql/',
2929
* documents: ['src/**\/*.tsx', '!src\/gql/**\/*'],
3030
* generates: {
3131
* './src/gql/': {
@@ -49,7 +49,7 @@ export type ClientPresetConfig = {
4949
* @exampleMarkdown
5050
* ```tsx
5151
* const config = {
52-
* schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
52+
* schema: 'https://graphql.org/graphql/',
5353
* documents: ['src/**\/*.tsx', '!src\/gql/**\/*'],
5454
* generates: {
5555
* './src/gql/': {

website/src/pages/docs/guides/react-query.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ contents:
4444
import type { CodegenConfig } from '@graphql-codegen/cli'
4545

4646
const config: CodegenConfig = {
47-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
47+
schema: 'https://graphql.org/graphql/',
4848
documents: ['src/**/*.tsx'],
4949
ignoreNoDocuments: true,
5050
generates: {
@@ -170,7 +170,7 @@ export async function execute<TResult, TVariables>(
170170
query: TypedDocumentString<TResult, TVariables>,
171171
...[variables]: TVariables extends Record<string, never> ? [] : [TVariables]
172172
) {
173-
const response = await fetch('https://swapi-graphql.netlify.app/.netlify/functions/index', {
173+
const response = await fetch('https://graphql.org/graphql/', {
174174
method: 'POST',
175175
headers: {
176176
'Content-Type': 'application/json',

website/src/pages/docs/guides/react-vue.mdx

+6-10
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Tabs, Callout } from '@theguild/components'
88

99
GraphQL Code Generator provides a unified way to get TypeScript types from GraphQL operations for [most modern GraphQL clients and frameworks](#appendix-ii-compatibility).
1010

11-
This guide is built using the [Star wars films demo API](https://swapi-graphql.netlify.app/.netlify/functions/index).
11+
This guide is built using the [Star wars films demo API](https://graphql.org/graphql/).
1212

1313
We will build a simple GraphQL front-end app using the following Query to fetch the list of Star Wars films:
1414

@@ -62,7 +62,7 @@ Then provide the corresponding framework-specific configuration:
6262
import type { CodegenConfig } from '@graphql-codegen/cli'
6363

6464
const config: CodegenConfig = {
65-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
65+
schema: 'https://graphql.org/graphql/',
6666
documents: ['src/**/*.tsx'],
6767
ignoreNoDocuments: true, // for better experience with the watcher
6868
generates: {
@@ -83,7 +83,7 @@ export default config
8383
import type { CodegenConfig } from '@graphql-codegen/cli'
8484

8585
const config: CodegenConfig = {
86-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
86+
schema: 'https://graphql.org/graphql/',
8787
documents: ['src/**/*.vue'],
8888
ignoreNoDocuments: true, // for better experience with the watcher
8989
generates: {
@@ -184,7 +184,7 @@ const allFilmsWithVariablesQueryDocument = graphql(/* GraphQL */ `
184184
function App() {
185185
// `data` is typed!
186186
const { data } = useQuery(['films'], async () =>
187-
request('https://swapi-graphql.netlify.app/.netlify/functions/index', allFilmsWithVariablesQueryDocument, {
187+
request('https://graphql.org/graphql/', allFilmsWithVariablesQueryDocument, {
188188
first: 10 // variables are typed too!
189189
})
190190
)
@@ -535,11 +535,7 @@ export function useGraphQL<TResult, TVariables>(
535535
...[variables]: TVariables extends Record<string, never> ? [] : [TVariables]
536536
): UseQueryResult<TResult> {
537537
return useQuery([(document.definitions[0] as any).name.value, variables], async ({ queryKey }) =>
538-
request(
539-
'https://swapi-graphql.netlify.app/.netlify/functions/index',
540-
document,
541-
queryKey[1] ? queryKey[1] : undefined
542-
)
538+
request('https://graphql.org/graphql/', document, queryKey[1] ? queryKey[1] : undefined)
543539
)
544540
}
545541
```
@@ -623,7 +619,7 @@ export function useGraphQL<TResult, TVariables>(
623619
...[variables]: TVariables extends Record<string, never> ? [] : [TVariables]
624620
): UseQueryResult<ExecutionResult<TResult>> {
625621
return useQuery([(document.definitions[0] as any).name.value, variables], () =>
626-
customFetcher('https://swapi-graphql.netlify.app/.netlify/functions/index', document, variables)
622+
customFetcher('https://graphql.org/graphql/', document, variables)
627623
)
628624
}
629625
```

website/src/pages/docs/guides/vanilla-typescript.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ contents:
6060
import type { CodegenConfig } from '@graphql-codegen/cli'
6161

6262
const config: CodegenConfig = {
63-
schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
63+
schema: 'https://graphql.org/graphql/',
6464
documents: ['src/**/*.ts'],
6565
ignoreNoDocuments: true,
6666
generates: {
@@ -187,7 +187,7 @@ export async function execute<TResult, TVariables>(
187187
query: TypedDocumentString<TResult, TVariables>,
188188
...[variables]: TVariables extends Record<string, never> ? [] : [TVariables]
189189
) {
190-
const response = await fetch('https://swapi-graphql.netlify.app/.netlify/functions/index', {
190+
const response = await fetch('https://graphql.org/graphql/', {
191191
method: 'POST',
192192
headers: {
193193
'Content-Type': 'application/json',

0 commit comments

Comments
 (0)