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

    rohanray

    02/02/2018, 7:54 AM
    https://ibb.co/eH7y4R
  • n

    nilan

    02/02/2018, 7:56 AM
    Hey @rohanray, happy to help, please reach out to support@graph.cool šŸ™‚
    r
    • 2
    • 1
  • m

    max

    02/02/2018, 10:30 AM
    @rohanray you might be interested in this: https://www.quora.com/Is-it-not-advisable-to-use-database-in-Docker-container
  • r

    rick

    02/02/2018, 11:32 AM
    can someone here help me with this? https://www.graph.cool/forum/t/prisma-authentication-implementation/2420
    āœ… 1
  • j

    Josef Henryson

    02/02/2018, 11:35 AM
    I just migrated from legacy project to gc service, when trying to update my schema locally and then running gc deploy, som type property names does not get updated, any ideas why? I deleted a relation and that was successfully updated…
    • 1
    • 1
  • m

    Moritz

    02/02/2018, 12:27 PM
    (SOLVED) Hi everyone, I just located an issue with the typescript boilerplate: In the typescript boilerplate there is a file
    src/generated/prisma.ts
    with the header text:
    Copy code
    # THIS FILE HAS BEEN AUTO-GENERATED BY "PRISMA DEPLOY"
    # DO NOT EDIT THIS FILE DIRECTLY
    However, when I delete the file and redeploy, it does not get regenerated and
    yarn dev
    gives an error complaining that it is not there. This is a problem, since any auto generated files should be regenerated and not statically expected. I ran into this issue when migrating an existing node-prisma app to typescript. Any help?
    n
    • 2
    • 4
  • n

    Nikhil

    02/02/2018, 12:33 PM
    @nilan is there any way to make integer field auto increment?
    n
    • 2
    • 4
  • p

    Pieter

    02/02/2018, 1:28 PM
    https://graphcool.slack.com/archives/C8329RDK6/p1517577206000308
  • p

    patrick_madx

    02/02/2018, 2:06 PM
    https://github.com/graphcool/prisma/issues/1774 Anyone able to help me out with this issue? šŸ™‚
    • 1
    • 1
  • j

    johhansantana

    02/02/2018, 4:14 PM
    when I deploy a prisma app to
    now
    what's my subscription url?
  • j

    Janne

    02/02/2018, 4:25 PM
    any ideas is there input types supported or planned to be supported?
    m
    n
    • 3
    • 12
  • k

    Kimiiz

    02/02/2018, 4:41 PM
    docker exec -it prisma-db mysql -u root --host 127.0.0.1 --port 3306 -p Enter password: ERROR 1045 (28000): Access denied for user ā€˜root’@ā€˜127.0.0.1’ (using password: YES)
    a
    • 2
    • 7
  • d

    Dylan_b

    02/02/2018, 4:51 PM
    I did graphcool deploy -f command, yet I cant see my deployment in the dashboard?
  • d

    Dylan_b

    02/02/2018, 4:53 PM
    hmm doesnt create a graphcoolrc with config either
  • d

    Dylan_b

    02/02/2018, 5:00 PM
    oh I had a space in the name
  • d

    Dylan_b

    02/02/2018, 5:02 PM
    guess that causes a silent error
  • s

    Sumant

    02/02/2018, 6:43 PM
    Hello guys. I'm a full stack developer interested in learning about prisma, graphcool, etc..
    šŸ™Œ 2
    d
    • 2
    • 2
  • s

    Sumant

    02/02/2018, 6:45 PM
    I've installed prisma locally on my windows machine and I'm having an issue with deployment. If anyone is familiar with this, I'd love some advice on this. Thanks! šŸ™‚
    h
    • 2
    • 5
  • s

    Sumant

    02/02/2018, 6:49 PM
    So I've started with selecting the typescript-advanced option during prisma init .
    h
    n
    • 3
    • 9
  • l

    lawjolla

    02/02/2018, 7:20 PM
    I'm getting
    Whoops. Looks like an internal server error. Search your cluster logs for request ID: api:api:cjd6bd6mf4yni01724rcl7jm0
    for a create mutation on a shared cluster. I take it there's no way to view logs on a shared cluster?
  • d

    dccarmo

    02/02/2018, 7:36 PM
    Hey everyone šŸ™‚ I just posted a question on StackOverflow and I was wondering if anyone here would want to give their opinion (or point what I’m doing wrong) here: https://stackoverflow.com/questions/48589722/how-to-improve-mutation-with-graphcool
    l
    • 2
    • 3
  • m

    Mr.niko.la

    02/02/2018, 8:06 PM
    Is prisma relevant if you are starting fresh ??
    n
    • 2
    • 2
  • m

    Mr.niko.la

    02/02/2018, 8:07 PM
    meaning no previous database with old schema?
  • l

    lawjolla

    02/02/2018, 8:22 PM
    Is there a good explanation how Prisma and Yoga sitch? I'm still confused how I can call for a
    Post
    type in
    schema.graphql
    that isn't defined in schema.graphql or imported at the top.
    n
    • 2
    • 1
  • p

    peter

    02/02/2018, 8:30 PM
    just updated my local install of docker for mac…now when booting my local cluster I get errors
  • u

    user

    02/02/2018, 8:31 PM
    @peter commented on @peter’s file

    https://prisma.slack.com/files/U6A7WT4SV/F92H0S6MN/iterm2002.pngā–¾

    : I am not a docker poweruser and could use some guidance šŸ™‚
  • n

    nilan

    02/02/2018, 8:31 PM
    @peter let's use this thread to discuss
    p
    h
    • 3
    • 36
  • j

    jonoirwinrsa

    02/02/2018, 9:44 PM
    can someone please help me with this permissions query - I want it to be OR not AND
    Copy code
    # User can only read projects that belong to the same client or User is Admin
    query read($node_id: ID!, $user_id: ID!) {
      SomeProjectExists(
        filter: {
          id: node_id,
          client: {
            users_some: {
              id: $user_id
            }
          }
        })
      SomeUserExists(
        filter: {
          id: $user_id,
          userType: Admin
        })
    }
    n
    • 2
    • 4
  • t

    travis.gregory

    02/02/2018, 10:10 PM
    I pulled down the tutorial code from https://github.com/howtographql/graphql-js and it all works great until I get to the Subscriptions section. When I run my subscription it doesn’t detect new additions to the database. Anyone have a solution? I haven’t written any new code since pulling it down.
    n
    p
    • 3
    • 3
  • h

    harrisrobin

    02/02/2018, 10:14 PM
    Out of curiosity, is there a roadmap/eta for Prisma Cloud? šŸ™‚
    n
    • 2
    • 1
1...557558559...637Latest