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

    noahdavis

    02/15/2018, 7:36 PM
    Say I want to build a HIPPA compliant app. Can someone give some examples of granular permissions?
    l
    n
    • 3
    • 3
  • n

    nikolasburk

    02/15/2018, 7:36 PM
    Hey everyone 👋 We’ve just released a new tutorial about building GraphQL servers with
    graphql-yoga
    . It’s a great starting point if you’ve struggled a bit to understand the major concepts of Prisma. In the tutorial, you’ll learn how all the different pieces fit together 🙂 Would love to hear your feedback 🙌 https://twitter.com/graphcool/status/964221328659308545
    parrotwave6 7
    parrotwave5 4
    fast parrot 1
    ❤️ 2
    m
    • 2
    • 2
  • z

    zonofthor

    02/15/2018, 8:11 PM
    a little confused, coming from SQL where I am used to relations such as JOIN Users ON Users.id=Stories.Author ... the relation declaration seems to refer to the whole Type but not Type/Field such as id ?
  • h

    harmony

    02/15/2018, 8:14 PM
    pretty sure it uses the id
  • z

    zonofthor

    02/15/2018, 8:17 PM
    ok, hard-coded by default - you know if I can specify any other field to use instead?
  • t

    typeofgraphic

    02/15/2018, 9:45 PM
    How are templates deleted/removed? After running:
    graphcool add-template graphcool/templates/auth/linkedin
    I am unable to delete or remove the template, there is no remove-template command and the files are read-only
  • k

    kristo

    02/15/2018, 10:10 PM
    Hi all, is there a good place to talk about prisma? I’m specifically wanting more information around deploying clusters, and how to manage multiple environments with a basic prisma setup?
    d
    • 2
    • 2
  • k

    Kurt DiPaolo

    02/15/2018, 10:43 PM
    I need help! I just changed some of my schema fields from `Int`’s to `Float`s and in my GC playground i’m easily able to complete a mutation but in my app it looks like maybe my mutation is getting cached with the old
    Int
    type. Here’s a video explaining: http://share.streamlinedstudio.com/1o2l0Y0O3v3f
    • 1
    • 1
  • f

    Futurekam

    02/15/2018, 11:16 PM
    Hello 👋!! I’m Kam Question: How can I nuke my deployed prisma server? My database tables no longer matches my gql schema
  • k

    Katie

    02/15/2018, 11:19 PM
    I have created a typescript graphql yoga project using the typescript boilerplate and would like to be able to split my schema into multiple .graphql files and import them like so:
    import UserSchema from './user.graphql'
    . How can I accomplish this?
  • f

    Futurekam

    02/15/2018, 11:26 PM
    @Katie you can use schema merging there are a few libraries on NPM you could utilize.
  • c

    chilzap

    02/15/2018, 11:28 PM
    Curious to know if anyone explored authorization packages/module for Prisma? Suggestions are welcome - (something similar to - https://www.graph.cool/docs/tutorials/auth/authorization-for-a-cms-miesho4goo#elevated-access-for-owners)
    👍 1
    l
    • 2
    • 9
  • k

    Katie

    02/15/2018, 11:36 PM
    @Futurekam I am more concerned about actually importing the files than merging them. Right now I'm seeing errors like this:
    Cannot find module './user.graphql'
    when I try to import them. In meteor, you can do
    import UserSchema from './user.graphql'
    , (I think this just imports the file contents as a string), then pass an array of imported schemas to makeExecutableQuery, but I don't want to use meteor.
    f
    • 2
    • 5
  • f

    Futurekam

    02/15/2018, 11:36 PM
    Aah I see
  • g

    gabe.bravo

    02/16/2018, 12:52 AM
    hello everyone, just joined. good to be here. seems like a great technology. excited to get started. thanks to everyone who helps in advanced. 👍
  • l

    liamdanielduffy

    02/16/2018, 2:50 AM
    hi! just began using Graphcool cloud and I'm wondering if how I can view the dashboard shown on the main product page?
  • l

    liamdanielduffy

    02/16/2018, 2:50 AM
    it's front and center at this link: https://www.graph.cool/cloud/
  • l

    liamdanielduffy

    02/16/2018, 2:51 AM
    does the dashboard exist only for paid users? I'm currently on the free tier
  • l

    liamdanielduffy

    02/16/2018, 2:51 AM
    I'm looking for a way to monitor how much of my monthly limit for requests has been taken up
  • u

    user

    02/16/2018, 3:30 AM
    @Futurekam commented on @liamdanielduffy’s file

    https://prisma.slack.com/files/U9A6KBY85/F9A2GEFFW/ready.5b422ddd.png▾

    : I dont think it has been released yet not sure what the ETA is
  • l

    liamdanielduffy

    02/16/2018, 3:42 AM
    is there a billing dashboard? or anything to monitor where you are relative to the limits of your current free / paid plan?
  • l

    liamdanielduffy

    02/16/2018, 3:43 AM
    without that I'm flying in the dark until I run into requests getting throttled or get overbilled because I went over my current plan's rates
  • l

    liamdanielduffy

    02/16/2018, 3:55 AM
    ah > for anyone else confused by this there's a way to check requests so far in your settings under billing
  • s

    Simon

    02/16/2018, 7:52 AM
    There is something like a prisma nuke command.I am pretty sure it is actually called prisma nuke 😉
    d
    f
    • 3
    • 64
  • n

    Nick Luger

    02/16/2018, 7:56 AM
    Its
    local nuke
  • m

    Maxime Scibetta

    02/16/2018, 8:44 AM
    HI all, someone have a good practice for uploading file with vue.js, apollo, prisma
    m
    • 2
    • 6
  • g

    glen

    02/16/2018, 9:00 AM
    Anyone know of any integration testing examples for resolvers?
    m
    • 2
    • 2
  • t

    typeofgraphic

    02/16/2018, 2:50 PM
    anyone know of how to remove templates (that were added using the CLI 'add-template <template>' command)? I cannot delete the files due to a permission error
    e
    • 2
    • 4
  • s

    sebastian

    02/16/2018, 4:18 PM
    Hey everyone, got a quick question - I'm currently making my way through Nikolas Burk's React-Relay tutorial on howtographql.com. Does anybody know if this tutorial teaches Relay Modern? CC: @nikolasburk
  • f

    Futurekam

    02/16/2018, 5:18 PM
    Has anyone else gotten this issue
    Copy code
    [native code]
    json@[native code]
    promiseReactionJob@[native code]
    when running
    Copy code
    yarn
    since I upgraded
    Copy code
    prisma-binding
    to
    Copy code
    1.5.10
    I've gotten that output unless I
    Copy code
    rm -rf yarn.lock
    and run
    Copy code
    npm install
    n
    • 2
    • 4
1...575576577...637Latest