Move graphql helper from utils into helpers

This commit is contained in:
dangered wolf 2023-09-10 20:43:27 -04:00
parent 0c2f1b04f9
commit f77b3059b3
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
3 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ import { translateTweet } from '../helpers/translate';
import { unescapeText } from '../helpers/utils'; import { unescapeText } from '../helpers/utils';
import { processMedia } from '../helpers/media'; import { processMedia } from '../helpers/media';
import { convertToApiUser } from './user'; import { convertToApiUser } from './user';
import { isGraphQLTweet } from '../utils/graphql'; import { isGraphQLTweet } from '../helpers/graphql';
/* This function does the heavy lifting of processing data from Twitter API /* This function does the heavy lifting of processing data from Twitter API
and using it to create FixTweet's streamlined API responses */ and using it to create FixTweet's streamlined API responses */

View file

@ -1,7 +1,7 @@
import { Constants } from './constants'; import { Constants } from './constants';
import { Experiment, experimentCheck } from './experiments'; import { Experiment, experimentCheck } from './experiments';
import { generateUserAgent } from './helpers/useragent'; import { generateUserAgent } from './helpers/useragent';
import { isGraphQLTweet } from './utils/graphql'; import { isGraphQLTweet } from './helpers/graphql';
const API_ATTEMPTS = 3; const API_ATTEMPTS = 3;
let wasElongatorDisabled = false; let wasElongatorDisabled = false;