You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This query appears to work a majority of the time. When I check my server logs, everything is always being properly exited & returned, but the query occasionally gets stuck with loading: true without getting the data.
No errors.
Any known issues or ideas of some things I could try? I've seen some other issues e.g. apollographql/react-apollo#368, however I'm not doing any mutations.
query MyProfile {
me {
user_id
username
user_metadata {
...ProfileUserMetadata
__typename
}
identities {
...ProfileInstagramIdentity
__typename
}
__typename
}
userPersona {
...ProfileUserPersona
__typename
}
userPhotos {
...ProfileUserPhotos
__typename
}
userShows {
...ProfileUserShows
__typename
}
userGames {
...ProfileUserGames
__typename
}
userConventions {
...ProfileUserConventions
__typename
}
userInterests
userFavorites {
unseenCount
yourFavorites {
...ProfileHit
__typename
}
favoritedYou {
...ProfileHit
__typename
}
mutualFavorites {
...ProfileHit
__typename
}
__typename
}
}
fragment ProfileGeoloc on Geoloc {
country_code
country_code3
country_name
city_name
lat
lng
time_zone
continent_code
admin1
__typename
}
fragment ProfileHitUserMetadata on Hit {
Gender
Birthday
Caption
GamesInfo
ConsInfo
__typename
}
fragment ProfileUserMetadata on UserMetadata {
Gender
Birthday
Caption
GamesInfo
ConsInfo
_geoloc {
...ProfileGeoloc
__typename
}
__typename
}
fragment ProfileUserPhotos on Photo {
public_id
secure_url
order
__typename
}
fragment ProfileUserPersona on Persona {
id
name
name_alt
image_thumbnail
image_standard
sources {
id
name
__typename
}
__typename
}
description
roles
__typename
}
fragment ProfileUserShows on Show {
id
title
cover
type
total_episodes
season
start_date_fuzzy
end_date_fuzzy
genres
description
synonyms
__typename
}
fragment ProfileUserGames on Game {
id
name
first_release_date
release_dates {
platform
date
__typename
}
genres
summary
cover
screenshots
publishersWithName {
id
name
__typename
}
developersWithName {
id
name
__typename
}
platforms
__typename
}
fragment ProfileUserConventions on Convention {
name
logo
tagline
dateStart
dateEnd
venue
location
website
__typename
}
fragment ProfileHit on Hit {
objectID
username
userPhotos {
...ProfileUserPhotos
__typename
}
userPersona {
...ProfileUserPersona
__typename
}
userShows {
...ProfileUserShows
__typename
}
userConventions {
...ProfileUserConventions
__typename
}
...ProfileHitUserMetadata
userInterests
_geoloc {
...ProfileGeoloc
__typename
}
userGames {
...ProfileUserGames
__typename
}
instagram {
...ProfileInstagramIdentity
__typename
}
lastLogin
__typename
}
fragment ProfileInstagramIdentity on Identity {
profileData {
nickname
picture
__typename
}
user_id
provider
__typename
}
The text was updated successfully, but these errors were encountered:
This is driving me nuts.
This query appears to work a majority of the time. When I check my server logs, everything is always being properly exited & returned, but the query occasionally gets stuck with loading: true without getting the data.
No errors.
Any known issues or ideas of some things I could try? I've seen some other issues e.g. apollographql/react-apollo#368, however I'm not doing any mutations.
The text was updated successfully, but these errors were encountered: