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

    justinrich

    03/08/2018, 3:46 AM
    Any examples on how to do update mutations for entities that have linked datapoints would be greatly appreciated
  • v

    veksen

    03/08/2018, 5:35 AM
    I found this video series today about yoga + prisma:

    https://www.youtube.com/watch?v=nyE6shIRzxMβ–Ύ

    πŸ‘‹ 2
    πŸ‘ 5
  • v

    veksen

    03/08/2018, 5:35 AM
    from @Ben Awad
  • d

    Dhiraj

    03/08/2018, 6:03 AM
    Created createUser Mutation after calling it from playground it returning an error. mutation{ createUser(firstName:"abc", lastName:"xyz", mobile:3453343443){ id } } error:- ctx.db.mutation.createUser is not a function"
  • g

    gihrig

    03/08/2018, 6:18 AM
    @Dhiraj If you created your project with something like
    Copy code
    graphql create {project_name} --boilerplate node-advanced
    You must expose you mutation through
    src/resolvers/index.js
  • v

    veksen

    03/08/2018, 6:38 AM
    I'm very much misunderatanding something with apollo server (I'm not quite sure of the exact library this syntax come from): Assume a Request model which has a many-to-one relationship named
    kiosk
    .
    Copy code
    const existingRequest = await ctx.db.query.request({ where: { id } });
    
    // only the base model is available here, not relationships:
    existingRequest.kiosk // undefined
    1. Which syntax does this come from? 2. Is there any doc for this syntax?
    m
    n
    • 3
    • 3
  • m

    Moritz

    03/08/2018, 9:03 AM
    Hi, whenever I update Prisma I get a series of errors concerning my npm permissions:
    Copy code
    gyp ERR! stack Error: EACCES: permission denied, rmdir 'build'
    ,
    Copy code
    Error: EACCES: permission denied, mkdir '/Users/Wingding/Library/Caches/prisma
    , and a few more. Have I corrupted my local folder permissions, or is anyone else running into these issues?
    n
    r
    • 3
    • 3
  • n

    Nitin Prajpati

    03/08/2018, 9:15 AM
    Hello guys
    n
    • 2
    • 1
  • m

    Matteo

    03/08/2018, 9:53 AM
    hi everyone πŸ™‚
    n
    • 2
    • 1
  • m

    Matteo

    03/08/2018, 9:57 AM
    trying tho choose between graphqlyoga or "manual" implementation... what are the cons?
    n
    • 2
    • 4
  • p

    picosam

    03/08/2018, 10:00 AM
    Hello all! May someone remind me again why we need to check the
    generated
    folder to Git?
    n
    • 2
    • 17
  • r

    rein

    03/08/2018, 10:29 AM
    anyone else having trouble creating a new cluster on prisma cloud?
    n
    • 2
    • 1
  • r

    rein

    03/08/2018, 10:29 AM
    Also, getting a lot of errors on the create cluster page and whenever I type, the page reloads
    n
    • 2
    • 1
  • r

    ragzor

    03/08/2018, 10:41 AM
    hey is there an easy way to transfer data from graph.cool console to the new prisma console?
    n
    • 2
    • 2
  • e

    ericsonluciano

    03/08/2018, 11:30 AM
    anyone here tried to make a relationship of two type and the one type can’t be duplicate data?
  • r

    rem

    03/08/2018, 12:11 PM
    Anyone know if the subscription webhook custom headers work? I'm sending an authorization header to my webhook endpoint, but the target isn't seeing it, so returns a 401 Unauthorized.
  • m

    Matteo

    03/08/2018, 12:27 PM
    so, at the end of the day, the best place to put authorization is the businness layer?
  • m

    mv

    03/08/2018, 1:13 PM
    Hi everyone. I would be really grateful if someone could help with that: https://www.graph.cool/forum/t/inconsistencies-with-self-relations/2593 It's been 3 weeks, and I'm still not able to get self-relations to work properly with Prisma (it was working on graphcool). Thanks!!
    d
    • 2
    • 1
  • k

    KATT

    03/08/2018, 1:58 PM
    Limited to 1 req/s
    is this ever gonna be reconsidered? I’m so far only using prisma for pet projects, but it makes the experiences really poor (page load takes several seconds as I do SSR and preload some data (that requires several reqs))
    h
    d
    • 3
    • 4
  • k

    KATT

    03/08/2018, 2:00 PM
    it would be nice if the β€œFree” tier was a viable option when you have a hobby project and as soon as/if you get some users you could upgrade.
  • k

    KATT

    03/08/2018, 2:02 PM
    even like 5 reqs/s would enable you to actually bootstrap something on it before spending money
    πŸ‘πŸ» 2
  • h

    hvdklauw

    03/08/2018, 2:17 PM
    Or more like 3600 requests an hour as upper limit and then a 5 requests per second limit. Then you can do quick bursts of 5 req/s, but if you do that for longer periods you hit the second cap
    πŸ‘πŸ» 1
  • h

    harmony

    03/08/2018, 2:18 PM
    idk, something like shared usage would be nice
  • h

    harmony

    03/08/2018, 2:19 PM
    so if the cluster is not doing anything you can get all the requests you want
  • h

    harmony

    03/08/2018, 2:19 PM
    but if other people also use it it gets load balanced
  • n

    nilan

    03/08/2018, 2:22 PM
    @KATT @hvdklauw @harmony
    h
    k
    • 3
    • 4
  • s

    Steven Sacks

    03/08/2018, 2:33 PM
    Do you guys have any plans to make local development any easier?
    e
    f
    n
    • 4
    • 14
  • j

    jasonsooter

    03/08/2018, 3:47 PM
    Using the Graphcool Email/Password Authentication. What’s the proper way to handle logout/signout?
  • p

    patrick_madx

    03/08/2018, 3:54 PM
    502 on the prisma service... anyone? πŸ˜›
    n
    • 2
    • 3
  • l

    lawjolla

    03/08/2018, 3:55 PM
    I'd like to have required fields and queried fields returned by the bindings. Is there any way to do that? e.g. I'd like the
    id
    to always be returned, so ideally, I'd like to combine these into one...
    Copy code
    db.query.users({}, `{ id }`)
       db.query.users({}, info)
    n
    a
    +2
    • 5
    • 75
1...602603604...637Latest