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

    aryan

    03/03/2018, 3:14 PM
    Is graphcool down for anyone else?
    t
    • 2
    • 2
  • a

    aryan

    03/03/2018, 3:15 PM
    Copy code
    eu-west-1:system:cjebi9y4t35p40166w57b2p4l: {"response":{"data":{"viewer":{"user":{"crm":null}}},"errors":[{"message":"Whoops. Looks like an internal server error. Please contact us from the Console (<https://console.graph.cool>) or via email (support@graph.cool) and include your Request ID: eu-west-1:system:cjebi9y4t35p40166w57b2p4l","requestId":"eu-west-1:system:cjebi9y4t35p40166w57b2p4l","path":["viewer","user","crm"],"locations":[{"line":5,"column":13}]}],"status":200},"request":{"query":"\n      query {\n        viewer {\n          user {\n            crm {\n              onboardingStatus {\n                id\n                gettingStarted\n                gettingStartedSkipped\n                gettingStartedExample\n              }\n            }\n          }\n        }\n      }","variables":{}}}
  • a

    aryan

    03/03/2018, 3:19 PM
    is anyone able to login to their graphcool console today?
    t
    e
    • 3
    • 3
  • a

    aryan

    03/03/2018, 3:24 PM
    someone should update https://status.graph.cool looks like
  • d

    davidyoung

    03/03/2018, 3:24 PM
    Hi everyone, having issues with graphcool
  • d

    davidyoung

    03/03/2018, 3:25 PM
    Looks like I'm not the only one at the moment?
  • e

    ed

    03/03/2018, 3:25 PM
    You are not, some of us are having issues with graphcool
  • n

    nilan

    03/03/2018, 3:25 PM
    Thanks everyone, we're investigating this right now.
    🙏 5
  • d

    davidyoung

    03/03/2018, 3:25 PM
    Thanks Nilan. It started to take long to resolve, like 15-30 seconds
  • d

    davidyoung

    03/03/2018, 3:25 PM
    and then stopped resolving
  • d

    davidyoung

    03/03/2018, 3:26 PM
    I'm on eu-west-1 too if it helps at all
  • g

    gopidon

    03/03/2018, 3:30 PM
    ooops... u guys are down!
  • d

    davidyoung

    03/03/2018, 3:33 PM
    any update by any chance @nilan?
    n
    t
    • 3
    • 3
  • g

    gopidon

    03/03/2018, 3:36 PM
    Its UP for me
  • a

    aryan

    03/03/2018, 3:43 PM
    Same, still relatively slow but back up for me too
  • t

    tomhut

    03/03/2018, 3:52 PM
    Working wonderfully for me again
  • g

    gopidon

    03/03/2018, 3:55 PM
    Hey Nilan, wonder what actually happens behind the scenes when we face outage. Is it like someone switched off a big switch by mistake? Just asking 😬
  • a

    aryan

    03/03/2018, 4:08 PM
  • a

    agartha

    03/03/2018, 4:10 PM

    https://www.youtube.com/watch?v=YSEw9CrSc-U▾

    😂 1
  • n

    nilan

    03/03/2018, 4:17 PM
    We should be good again, thanks for your patience: https://status.graph.cool/.
    d
    a
    +2
    • 5
    • 5
  • m

    martin

    03/03/2018, 4:56 PM
    Hey guys. GraphQL-yoga uses Apollo-upload-server right? So the client should be able to use Apollo-upload-client and connect it to a Prisma server which uses GraphQL-yoga. And everything will be good to go, correct?
    n
    • 2
    • 1
  • a

    atito

    03/03/2018, 6:25 PM
    Hey guys, I have question related to prisma and I couldn’t find answer in the docs. I’m getting an error
    Cannot return null for non-nullable field
    when trying to delete resource and asking for fields on a relation. Is that normal? if yes, Is that the correct behavior? example:
    Copy code
    mutation {
      deletePost(where: {
        id: "<ID>"
      }) {
        id
        user {
          id // this cause an error
        }
      }
    }
    PS: I’m testing that against Prisma APIs
    m
    • 2
    • 1
  • c

    ckelley

    03/03/2018, 7:35 PM
    Hey all, I rolled out an update to my Prisma cluster adding a `CLUSTER_PUBLIC_KEY`; first off , it didn't work, but now when I tried to remove it Prisma is unable to connect to the database layer. I'm using an external database layer, not the mysql container, so nothing has changed on that front. Anybody else experienced this?
    Copy code
    Fatal error during deployment worker initialization: java.sql.SQLTransientConnectionException: internal - Connection is not available, request timed out after 5002ms.
    a
    • 2
    • 2
  • t

    tsdexter

    03/03/2018, 7:38 PM
    anyone having difficulty paying to upgrade a graphcool account in the graphcool console and/or contacting customer support?
    n
    • 2
    • 1
  • t

    tsdexter

    03/03/2018, 7:39 PM
    just keeps loading when I choose a plan
  • c

    ckelley

    03/03/2018, 7:45 PM
    Back to having an issue protecting the cluster with a public/private key:
    Authentication token is invalid: Token can't be decoded: Illegal base64 character 22
    My public looks like this:
    Copy code
    CLUSTER_PUBLIC_KEY="-----BEGIN PUBLIC KEY-----\r\nasdf\r\n-----END PUBLIC KEY-----\r\n"
    h
    • 2
    • 5
  • l

    lastmjs

    03/03/2018, 9:17 PM
    Issues on the Simple API, 504s
  • m

    manticarodrigo

    03/04/2018, 12:45 AM
    Has anybody used LocalStack (https://github.com/localstack/localstack) to emulate S3 file storage for testing?
    v
    • 2
    • 5
  • m

    max

    03/04/2018, 12:17 PM
    hey it would be great to hear other people's thoughts on this? What have you found to be Prisma's killer features? https://www.graph.cool/forum/t/prismas-killer-features/2711
    💯 2
  • m

    manticarodrigo

    03/04/2018, 2:37 PM
    I have this schema but when I try to createPost with a poll object I get the error: “The type of Mutation.createPost(poll:) must be Input Type but got: Poll.” Anybody know how I can create a post with a poll object inside?
    -.txt
1...594595596...637Latest