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, HttpLink, from, fromPromise} from '@apollo/client'; | |
| import {setContext} from '@apollo/client/link/context'; | |
| import {RetryLink} from '@apollo/client/link/retry'; | |
| import {onError} from '@apollo/client/link/error'; | |
| import {refresh} from 'react-native-app-auth'; | |
| import AsyncStorage from '@react-native-async-storage/async-storage'; | |
| import {getTokenSync, getToken} from '../../utils/getToken'; | |
| import {test_config, prod_config} from '../../utils/efaasConfig'; |
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
| ``` | |
| export const en = { | |
| section: { | |
| app: { | |
| name: 'Aiminaabee', | |
| description: 'Connecting Shops', | |
| description2: 'Aready have an account? ', | |
| login: 'Log In', | |
| privacy: `by continuing, you agree to 's aiminaabee's | |
| Terms of Use and confirm that you have read |
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
| //----Query-----// | |
| query AuthUserShops($offset: Int!, $limit: Int!) { | |
| authUserShops(offset: $offset, limit: $limit) { | |
| id | |
| __typename | |
| name | |
| avatar | |
| description | |
| categoryId | |
| numProducts |
NewerOlder