Last active
February 12, 2025 17:38
-
-
Save akozhemiakin/731b0c1e99eb89b01f80f08f9146b6b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ApolloClient, QueryOptions, MutationOptions } from 'apollo-client'; | |
import { DocumentNode } from 'graphql'; | |
import { getSdk, Requester } from '.generated/schema-typedefs'; | |
import { ApolloRequestError } from './ApolloRequestError'; | |
export type ApolloRequesterOptions<V, R> = | |
| Omit<QueryOptions<V>, 'variables' | 'query'> | |
| Omit<MutationOptions<R, V>, 'variables' | 'mutation'>; | |
const validDocDefOps = ['mutation', 'query', 'subscription']; | |
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type | |
export function getSdkApollo<C>(client: ApolloClient<C>) { | |
const requester: Requester = async <R, V>( | |
doc: DocumentNode, | |
variables: V, | |
options?: ApolloRequesterOptions<V, R>, | |
): Promise<R> => { | |
// Valid document should contain *single* query or mutation unless it's has a fragment | |
if ( | |
doc.definitions.filter( | |
d => | |
d.kind === 'OperationDefinition' && | |
validDocDefOps.includes(d.operation), | |
).length !== 1 | |
) { | |
throw new Error( | |
'DocumentNode passed to Apollo Client must contain single query or mutation', | |
); | |
} | |
const definition = doc.definitions[0]; | |
// Valid document should contain *OperationDefinition* | |
if (definition.kind !== 'OperationDefinition') { | |
throw new Error( | |
'DocumentNode passed to Apollo Client must contain single query or mutation', | |
); | |
} | |
switch (definition.operation) { | |
case 'mutation': { | |
const response = await client.mutate<R, V>({ | |
mutation: doc, | |
variables, | |
...options, | |
}); | |
if (response.errors) { | |
throw new ApolloRequestError(response.errors); | |
} | |
if (response.data === undefined || response.data === null) { | |
throw new Error('No data presented in the GraphQL response'); | |
} | |
return response.data; | |
} | |
case 'query': { | |
const response = await client.query<R, V>({ | |
query: doc, | |
variables, | |
...options, | |
}); | |
if (response.errors) { | |
throw new ApolloRequestError(response.errors); | |
} | |
if (response.data === undefined || response.data === null) { | |
throw new Error('No data presented in the GraphQL response'); | |
} | |
return response.data; | |
} | |
case 'subscription': { | |
throw new Error( | |
'Subscription requests through SDK interface are not supported', | |
); | |
} | |
} | |
}; | |
return getSdk(requester); | |
} | |
export type Sdk = ReturnType<typeof getSdkApollo>; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I agree with @snejdlawso. It's been a while but if I remember correctly we did something like this:
Here's what we did:
Line 15:
Line 46:
[Extra]
Might also add this after line 81: