Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Query arbitrarily stuck in loading: true? #1098

Closed
booboothefool opened this issue Dec 27, 2016 · 0 comments
Closed

Query arbitrarily stuck in loading: true? #1098

booboothefool opened this issue Dec 27, 2016 · 0 comments

Comments

@booboothefool
Copy link

booboothefool commented Dec 27, 2016

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.

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
}
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Feb 17, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant