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

    kdichev

    12/21/2017, 1:30 PM
    yup
    r
    • 2
    • 2
  • r

    rajit

    12/21/2017, 1:34 PM
    Subscribing to DELETE mutations via websocket (not server-side subscriptions): — I can't fetch
    previousValues { id }
    I get
    Insufficient permissions
    — I've tried making the entity readable by everyone, i.e. I completely relaxed the permission query. I still get insufficient permissions Has anyone seen that? What's the correct way to subscribe to deletes?
  • m

    max

    12/21/2017, 1:35 PM
    anyone using AWS and
    serverless-plugin-typescript
    ? Any thoughts?
  • r

    rein

    12/21/2017, 1:36 PM
    anyone else having troubles with deployment atm?
  • r

    RedShift

    12/21/2017, 2:24 PM
    is there a java library for running queries against graphql servers?
  • r

    RedShift

    12/21/2017, 2:24 PM
    like apollo but for Java?
  • t

    timrs2998

    12/21/2017, 2:27 PM
    there's an apollo android client but I believe that one only works for android; I'd be interested too
  • g

    Guilherme Estevão

    12/21/2017, 5:00 PM
    Hi Guys! Anyone know how I can expand this tutorial (https://www.howtographql.com/graphql-js/5-authentication/) to support login using google and facebook accounts?
    m
    s
    • 3
    • 2
  • g

    Guilherme Estevão

    12/21/2017, 5:02 PM
    some tutorial for example would help me a lot
  • y

    yolen

    12/21/2017, 5:09 PM
    Currently when adding a relation you append to the existing relations. Is there a way not to append or do I have to remove all relations before adding new relations?
    m
    • 2
    • 3
  • s

    senorcodecat

    12/21/2017, 8:18 PM
    Of course deploying my framework stops working the day of launch
  • s

    senorcodecat

    12/21/2017, 8:19 PM
    FML
    😡 1
    sadparrot 1
  • t

    Tomche

    12/21/2017, 8:29 PM
    Anyone to suggest a tiny graphql client for js? Sort of thinking either to write my own as it’s just couple of queries or just look something up
    j
    s
    • 3
    • 2
  • r

    rein

    12/21/2017, 9:21 PM
    Im still getting internal server error when trying to deploy 1.0 api project. Is there any update/response I missed?
    n
    • 2
    • 2
  • a

    agustif

    12/22/2017, 4:08 AM
    Hi guys, sorry for the spamming but after 2 days of not advancing this I’ve decided to go on and ask for help on the forums, hope to not be duplicating questions, I honestly don’t know how to make the connected nested mutations… https://www.graph.cool/forum/t/impossible-to-get-createcustomer-mutation-to-work-in-relation-with-userid/1966
  • s

    Saeris

    12/22/2017, 4:40 AM
    hey folks, I thought I'd challenge people to pick up GraphQL this upcoming year by taking something they're familiar with and building an API around it. Would appreciate it if y'all could help signal boost my tweet, my twitter reach isn't very strong: https://twitter.com/Saeris/status/944061983917162496
    🦜 3
  • r

    rein

    12/22/2017, 8:34 AM
    Can anyone who is trying the 1.0 api tell me if they also have a 500 error when try to deploy?
  • r

    rein

    12/22/2017, 8:34 AM
    Just want to know if im the only one
  • m

    max

    12/22/2017, 11:39 AM
    hey I'm trying to get a presigned S3 upload url but running into problems. any ideas? https://stackoverflow.com/questions/47940887/how-can-i-get-signed-s3-url-using-node-typescript
    r
    • 2
    • 2
  • m

    max

    12/22/2017, 11:52 AM
    When I finish my S3 file functionality I'll share it with the Graphcool community
    👍 1
  • p

    playra

    12/22/2017, 2:11 PM
    Help someone please! I can not decide a week for a simple task. https://www.graph.cool/forum/t/how-make-a-very-very-simple-mutation-from-an-authorized-user/1971
  • n

    njorogedavid13

    12/22/2017, 3:39 PM
    Hello guys my name is david, I am a fullstack developer and I want to start on graphql anyone has a good web article tutorial to get me started ?
    m
    n
    n
    • 4
    • 5
  • k

    kdichev

    12/22/2017, 4:36 PM
    yo guys just ejected my project so i can use it with the cli. I have a question how I am supposed to debug my functions?
    m
    • 2
    • 3
  • k

    kdichev

    12/22/2017, 4:51 PM
    another thing I have tweaked my function and it seems that it does not get updated after deploy
    n
    • 2
    • 2
  • k

    kdichev

    12/22/2017, 5:18 PM
    is there a local server I could run my app? Deploying after each save seems pretty excessive but I might have just missed this too 🙂
  • j

    jlengstorf

    12/22/2017, 6:06 PM
    @schickling @agartha Do any docs exist for the
    install.js
    step in the CLI
    create
    command?
    a
    • 2
    • 3
  • b

    brad.barnes

    12/22/2017, 6:56 PM
    All, I am trying to create a user with their current facebook friends (Who are already users in the app) in a single mutation. I thought I could do it with a nested mutation by giving the createUser api the facebookUserId of existing users as a friend. This however, is trying to create a new user mutation on the nested friend... Is there any way of doing this without multiple fetches being that facebookUserId is unique?
  • b

    brad.barnes

    12/22/2017, 7:15 PM
    If I was using the the plain id from graphcool I could just use a field in the mutation query friendsIds and give a list of the ids. Is it possible to use the facebook id for the id of all my users?
  • s

    stearm

    12/22/2017, 7:22 PM
    hi guys! I would like to create a
    User
    <->
    Task
    relationship in which a
    User
    can have zero or many `Task`s assigned and a
    Task
    can have zero or only one
    User
    assigned.
  • s

    stearm

    12/22/2017, 7:22 PM
    I just write those types:
    Copy code
    type Task @model {
      id: ID! @isUnique
      title: String
      description: String
      assignee: User! @relation(name: "UserTasks")
      effort: Effort! @relation(name: "TaskEffort")
    }
    
    type User @model {
      id: ID! @isUnique
      createdAt: DateTime!
      updatedAt: DateTime!
      name: String!
      tasks: [Task!]! @relation(name: "UserTasks")
      email: String! @isUnique
      password: String!
    }
1...481482483...637Latest