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

    dardub

    01/01/2018, 11:19 PM
    @Kay V I'm on macos
  • s

    stefan.libiseller

    01/02/2018, 12:59 AM
    Hey, I am trying to figure out how to do mutations with the graphqlclient for Python. Is this even possible?
    m
    h
    • 3
    • 3
  • v

    vanna.long

    01/02/2018, 1:40 AM
    Hi
    đź‘‹ 6
    n
    • 2
    • 1
  • d

    Dukuo

    01/02/2018, 1:54 AM
    Hi everyone! Please, let's get conversations in threads! It's very hard to keep track of all the conversations 🙂
    👍 3
  • p

    phil

    01/02/2018, 2:16 AM
    If I had a
    getOrCreateXxx(id)
    method on my graphql API, meaning it gets an object by, and if it doesnt’ exist the first time, creates it, should that be on the
    Queries
    or the
    Mutations
    of the root schema?
    a
    • 2
    • 4
  • d

    Dukuo

    01/02/2018, 3:28 AM
    I was just browsing graphcool's static page and noticed some stuff wasn't loading properly, namely twitter's avatars, which is causing the carousel to fail.
  • d

    dohomi

    01/02/2018, 9:31 AM
    Hello Happy New Year everybody
    🎉 2
  • d

    dohomi

    01/02/2018, 9:32 AM
    Is a setup for subscription with apollo v2 available? I receive constant a console warning: “WebSocket is closed before the connection is established”
  • d

    dohomi

    01/02/2018, 9:39 AM
    beside that adding a authToken seems not to work. Would be great to see an example of use
    n
    • 2
    • 2
  • h

    huv1k

    01/02/2018, 9:51 AM
    What is latest version of beta?
    graphcool@1.0.0-beta3
    ?
    n
    t
    • 3
    • 3
  • j

    john

    01/02/2018, 11:47 AM
    Ahoy: I'm trying to write a filter query which needs to test for the non-existence of a one-to-many relationship, I can use
    null
    in the console... however when I try and do this through Apollo it throws expected type errors (eg it doesn't like
    null
    values, because the schema is a relationship). Does anyone have any experience with this?
    n
    • 2
    • 10
  • p

    pettanko

    01/02/2018, 12:19 PM
    Are you supposed to npm install graphcool, graphcool-cli and graphcool-framework?
    n
    m
    • 3
    • 3
  • r

    raul

    01/02/2018, 3:30 PM
    Hii everyone and happy new year!! đź’š
    🦜 1
    🎉 4
  • r

    raul

    01/02/2018, 3:32 PM
    Just thanks to Graphcool team for an excellent work in the last year!! 🎊
  • r

    raul

    01/02/2018, 3:34 PM
    Graphcool save me my ass in a recently project 🦜
    ✨ 1
  • l

    leo

    01/02/2018, 3:46 PM
    hi guys how can I define more than one type in my
    .graphql
    ?
  • l

    leo

    01/02/2018, 3:46 PM
    I’m watching the REST Wrapper example https://github.com/graphcool/framework/blob/master/examples/rest-wrapper/src/allBreeds.graphql
    h
    • 2
    • 2
  • s

    Stef

    01/02/2018, 4:08 PM
    Hi folks, loving using Graphcool on a couple of new projects. Thinking ahead, is it possible to self-host this using Google infrastructure behind the scenes, or would we be tied into using Amazon Aurora?
    h
    m
    • 3
    • 4
  • p

    P_loringhoven

    01/02/2018, 4:16 PM
    I'm currently trying to have two fields related to the same user model. one is the "creator" and one the "owner" - but i receive an error message, that this cant be done, due to a field already existing.
    m
    j
    • 3
    • 11
  • b

    bpk

    01/02/2018, 4:22 PM
    wooohoo! I keep brushing up against Graphcool stuff as I dive deeper into GraphQL (im coming from Django + React). You guys have such great write-ups and resources that I can’t help but put you on my radar. That said, Im not entirely sure what all graphcool is, or offers.
    💪🏻 1
    graphcool 5
    d
    • 2
    • 1
  • j

    jan

    01/02/2018, 4:50 PM
    Hi everyone! First of all, 👏 on building an amazing product! I started playing around with graphcool over Christmas and immediately fell in love... One question regarding functions and
    operationBefore
    hooks - is it planned that it would be possible to update relation fields of a mutation as part of the function as well? I have a simple double-linked list implementation and would like to automatically add new nodes to the HEAD by taking the current HEAD and pointing the new node at it - even though my current
    operationBefore
    function sets the reference
    nextId
    field correctly in the response, the new node is still created with
    null
    in the
    next
    field
  • p

    peterp

    01/02/2018, 7:06 PM
    Is webpack / tree shaking or bundle minimizing still supported for functions?
  • p

    peterp

    01/02/2018, 7:07 PM
    Our build times have been really slow lately and we'd like to minify our bundle sizes
  • s

    Stef

    01/02/2018, 7:37 PM
    Hey folks, I seem to be unable to create a Function using the web based console. It’s giving me these errors on the JS console: https://www.dropbox.com/s/mz82lf26wt4fn22/Screenshot%202018-01-02%2019.36.29.png?dl=0
    • 1
    • 2
  • s

    Stef

    01/02/2018, 7:37 PM
    message has been deleted
  • l

    logan

    01/02/2018, 9:16 PM
    Anyone else see this error message (or lack thereof)?
    Copy code
    [object Object]: [object Object]
  • s

    signor_busi

    01/02/2018, 9:39 PM
    I used to be able to do something like this:
    Copy code
    mutation {
      createPerson(
        childern: [{
          name: "SomeName"
        }]
      ) {
        id
    }
    So creating a relation with one mutation. Now it just gives me
    Copy code
    Insufficient permissions for this mutation
    . It took me soooo long to figure out it's actually this "inline relation mutation" that's causing the permission error! But now my question is: Is this intended behaviour? Are these kinds of mutations not allowed anymore? Strange thing is that when I allow all operations (so if I do operation: "*") it works fine, but if I change to per-model permissions, it doesn't work
  • s

    signor_busi

    01/02/2018, 9:40 PM
    event if I allow everything on every model i'm getting insufficient permission
  • g

    Gabriel

    01/02/2018, 9:48 PM
    Hello, I’m using console.graph.cool and following a tutorial but I can’t find the integration option. Does anyone knows where is it ? Thank you in advance, this is the tutorial https://www.howtographql.com/vue-apollo/5-authentication/
    q
    • 2
    • 2
  • o

    Osha Foster

    01/02/2018, 11:08 PM
    Hi Everyone, I am pretty new to all this. I joined a friend on a project. When I deployed it it I deployed it to a different server then his. The changes I make are not showing up in the database, and also I am not connecting to the project on console.graph.cool? Anyone available to help me figure out what I am missing? Thanks Osha
1...491492493...637Latest