mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
23 lines
780 B
TypeScript
23 lines
780 B
TypeScript
export const isGraphQLTweetNotFoundResponse = (
|
|
response: unknown
|
|
): response is GraphQLTweetNotFoundResponse => {
|
|
return (
|
|
typeof response === 'object' &&
|
|
response !== null &&
|
|
'errors' in response &&
|
|
Array.isArray(response.errors) &&
|
|
response.errors.length > 0 &&
|
|
'message' in response.errors[0] &&
|
|
response.errors[0].message === '_Missing: No status found with that ID'
|
|
);
|
|
};
|
|
|
|
export const isGraphQLTweet = (response: unknown): response is GraphQLTweet => {
|
|
return (
|
|
typeof response === 'object' &&
|
|
response !== null &&
|
|
(('__typename' in response &&
|
|
(response.__typename === 'Tweet' || response.__typename === 'TweetWithVisibilityResults')) ||
|
|
typeof (response as GraphQLTweet).legacy?.full_text === 'string')
|
|
);
|
|
};
|