https://www.prisma.io/ logo
Join Slack
Powered by
# prisma-whats-new
  • r

    rcy

    12/12/2017, 6:53 PM
    @daniel yes, I'm getting intermittent 504's
  • j

    jsleeuw

    12/12/2017, 6:54 PM
    here too
  • d

    daniel

    12/12/2017, 6:54 PM
    thanks. so there's an issue.
  • r

    rcy

    12/12/2017, 6:55 PM
    not sure, i came here to check with others... https://status.graph.cool/ doesn't report anything
  • k

    kaihuang724

    12/12/2017, 6:55 PM
    Same here
  • r

    rcy

    12/12/2017, 6:55 PM
    well, yes, there is an issue... 🙂
  • d

    daniel

    12/12/2017, 6:55 PM
    yah, i checked there too, but it seems like a lot of people are having issue.
  • k

    kaihuang724

    12/12/2017, 6:56 PM
    Getting intermittent
    unexpected token <
    issues
  • k

    kaihuang724

    12/12/2017, 6:56 PM
    I think due to timeout
  • m

    matic

    12/12/2017, 7:01 PM
    @nilan that’s the error, @kaihuang724 @daniel @rcy can you maybe find a patteren to reproduce it?
  • k

    kaihuang724

    12/12/2017, 7:02 PM
    There doesn’t seem to be any pattern unfortunately. It’s intermittent when I reload the app. Sometimes it’ll connect, sometimes it wont.
  • j

    jsleeuw

    12/12/2017, 7:02 PM
    same here
  • k

    kaihuang724

    12/12/2017, 7:02 PM
  • k

    kaihuang724

    12/12/2017, 7:02 PM
    That’s what I’m seeing
  • m

    matic

    12/12/2017, 7:04 PM
    do you maybe know which queries are sent over when this occurs?
  • t

    tekk

    12/12/2017, 7:05 PM
    I've seen it on several different queries, the same query sometimes succeed as well.
  • d

    daniel

    12/12/2017, 7:05 PM
    Yeah, it loads sometime and sometime doesn't
  • d

    daniel

    12/12/2017, 7:05 PM
    It's the same query.
    s
    m
    • 3
    • 2
  • k

    kaihuang724

    12/12/2017, 7:06 PM
    The first query I run is checking the loggedInUser - but my guess since it’s intermittent is that any query would have the same result
  • k

    kaihuang724

    12/12/2017, 7:06 PM
    Copy code
    const LOGGED_IN_USER = gql`
      query LoggedInUser {
        loggedInUser {
          id
        }
      }
    `;
  • e

    ehodges

    12/12/2017, 7:07 PM
    How can I change the deployment server?
    s
    d
    • 3
    • 8
  • d

    daniel

    12/12/2017, 7:24 PM
    My issue is resolved. Thanks to @sorenbs for looking into it.
  • s

    sorenbs

    12/12/2017, 7:26 PM
    The issue has been resolved. It was caused by a slowdown in our processing of subscription messages that caused api servers to become unresponsive.
    👍 2
  • j

    jsleeuw

    12/12/2017, 7:26 PM
    Things seem to be back to normal for me too
  • j

    jsleeuw

    12/12/2017, 7:27 PM
    thanks @sorenbs
  • i

    iamclaytonray

    12/12/2017, 8:00 PM
    Is anyone decent with React & Apollo, concerning auth? My auth requests are sent successfully, however, the tokens don’t get stored. I also tried to manually add a root token but Apollo isn’t reading it for some reason. Any advice?
    d
    k
    e
    • 4
    • 23
  • b

    Butch

    12/12/2017, 8:57 PM
    Copy code
    type User @model {
      id: ID! @isUnique
      email: String
      firstName: String
      lastName: String
      posts: [Post!]! @relation(name: "PostOwner")
      createdAt: DateTime!
      updatedAt: DateTime!
    }
    
    type Post @model {
      id: ID! @isUnique
      title: String!
      contents: String!
      owner: [User!]! @relation(name: "PostOwner")
      createdAt: DateTime!
      updatedAt: DateTime!
    }
    Do I have to manually set the owner when creating a post?
    i
    • 2
    • 2
  • j

    Joel

    12/13/2017, 12:04 AM
    Does anyone know how to delete a local docker deployment configured by Graphcool? https://www.graph.cool/forum/t/how-to-delete-local-docker-deployment/1870
  • j

    Joel

    12/13/2017, 12:05 AM
    I’ve tried
    graphcool deploy --force
    and
    graphcool deploy --force NAME
    to no avail. Not seeing it anywhere in the docs.
  • s

    Saeris

    12/13/2017, 12:14 AM
    so I have an idea I'm trying to formulate out the best way to implement
1...467468469...637Latest