Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

They are fetching some data from a GraphQL server that takes several seconds to download.

Unfortunately, the server appears to have a write timeout of 60 seconds so it fails after one minute.

Here is an example of what is happening → https://i.imgur.com/BMsfLht.png

  POST /graphql HTTP/1.0
  Host: api-dot-yourdesk.wl.r.appspot.com
  Accept: */*
  Content-Type: application/json
  Origin: https://mydesktour.com
  Referer: https://mydesktour.com/explore
  User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) Safari/605.1.15

  {
    "operationName": "DesksByUser",
    "variables": {
      "filter": {}
    },
    "query": "query DesksByUser($filter: FilterFindManyDeskInput!) {\n  deskMany(filter: $filter) {\n    _id\n    date_created\n    img\n    about\n    name\n    hashtags\n    approved\n    likes\n    comments {\n      userId\n      __typename\n    }\n    user {\n      user_id\n      picture\n      name\n      __typename\n    }\n    desk_products {\n      pros\n      cons\n      coordX\n      coordY\n      product {\n        title\n        _id\n        image\n        prices {\n          raw\n          currency\n          value\n          __typename\n        }\n        __typename\n      }\n      __typename\n    }\n    __typename\n  }\n}\n"
  }


Tysm for even looking into this! I really need to investigate the root problems :(




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: