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

    jeffo

    02/19/2017, 5:01 PM
    Greetings!
  • a

    artyom

    02/19/2017, 5:01 PM
    let us know if you need help with anything
  • m

    monkeybonkey

    02/19/2017, 7:20 PM
    when creating a user using the auth0 provider - I can’t seem to update email - is that because it’s a system field?
    n
    • 2
    • 5
  • m

    monkeybonkey

    02/19/2017, 7:20 PM
    Copy code
    mutation createUser($idToken: String!, $username: String!, $email: String!, $thumbnail: String!, $photo: String!) {
      createUser(authProvider: {
        auth0: {idToken: $idToken}
      }, 
        username: $username, 
        email: $email, 
        thumbnail: $thumbnail, 
        photo: $photo) {
        id
      }
    }
  • l

    lxndralbert

    02/20/2017, 8:59 AM
    Hello there! 🙂
  • a

    arthurtayrac

    02/20/2017, 9:06 AM
    Hey 👋
  • n

    nilan

    02/20/2017, 9:40 AM
    Hey all 👋 Welcome to our Slack community 🙏
  • i

    ilja

    02/20/2017, 2:43 PM
    Is there something like mailgun integration planned for the platform, so we don’t have to use webtask? Would be nice to set up email verification / password reset through something like this 🙂
    s
    • 2
    • 3
  • g

    gmuresan

    02/20/2017, 3:08 PM
    I think I’m running into a bug. When you delete a node, the mutation result should be able to return all the fields of the deleted node. It doesn’t look like its returning any relations though. I’m just getting null for those fields
    n
    y
    • 3
    • 19
  • g

    ghislain

    02/20/2017, 5:27 PM
    Hi all, is there anyone here familiar with the graphql-type-json package (https://github.com/taion/graphql-type-json). I’ve been trying to use the json scalar type through this package, but to no avail. I’ve run out of ideas a to what I am doing wrong.
  • a

    artyom

    02/20/2017, 5:36 PM
    hey, @peter_p ! 🙌
  • m

    martin

    02/20/2017, 5:37 PM
    Is there a tutorial for creating a contact form using Graph.cool and not storing the data, but simply passing it on via email?
  • m

    martin

    02/20/2017, 5:39 PM
    Mmh… noticing the mailgun thread by @ilja above...
  • s

    sorenbs

    02/20/2017, 5:47 PM
    @martin and @ilja have you seen this tutorial on how to use Mailgun with Graphcool? https://docs.graph.cool/docs/tutorials/quickstart-3-saigai7cha
    👍🏽 1
    m
    i
    • 3
    • 3
  • m

    martin

    02/20/2017, 8:58 PM
    Are
    requests
    counted individually or together for the pricing? For example, are these counted as three or as one request?
    Copy code
    graphql(createMessage, { name: 'createMessages' })(
    	graphql(assignMessageToUser, { name: 'addToMessagesPerUser' })(
    		graphql(updateMessage, { name: 'updateMessages' })(Support)
    	)
    )
    s
    n
    • 3
    • 17
  • d

    drk

    02/20/2017, 10:03 PM
    is there a more in depth tutorial on sending push notifications in mutation callbacks other than the simple instagram example?
    s
    n
    • 3
    • 5
  • a

    artyom

    02/20/2017, 11:09 PM
    @francisc.furdui @luizhgferreira @antoine @orelzion hi and welcome all to the Graphcool slack! ping us with questions
    👋 1
  • a

    artyom

    02/20/2017, 11:40 PM
    also, 899 members currently, who will be the lucky 900…!? 🙌
  • l

    luizhgferreira

    02/20/2017, 11:42 PM
    Hi guys , thank you 😃
  • c

    cullan

    02/21/2017, 6:09 AM
    Is it possible to query the id of a relation instead of nesting the relation? For example, User has one Foo. I would like to do this
    Copy code
    {
      User(...) {
        id
        fooId
      }
    }
    instead of this
    Copy code
    {
      User(...) {
        id
        foo {
          id
        }
      }
    }
    n
    s
    • 3
    • 7
  • i

    ilja

    02/21/2017, 7:15 AM
    is anyone using Auth0 in an application that has 20k+ active users, are you guys finding their pricing reasonable, as it seems to be quiet $$$
    n
    • 2
    • 8
  • m

    m.b.iqbal

    02/21/2017, 4:09 PM
    is there any way of getting register/login with fb working without auth0
    👍 1
    n
    • 2
    • 1
  • m

    m.b.iqbal

    02/21/2017, 4:10 PM
    like using own server as an intermediary
  • c

    cullan

    02/21/2017, 4:38 PM
    I have a model with fields for a one-to-many relation to itself (managedBy -> manages). I am looking at the data and for some of the instances managedBy is null but the instance is in the manages array of the other instance. This happened after I ran a mutation that set managesIds to an array of ids on one of the items.
    n
    • 2
    • 1
  • g

    gmuresan

    02/21/2017, 5:19 PM
    Is there a guide to creating a mutation where you are setting a field that contains a one to many relation?
    n
    • 2
    • 9
  • a

    artyom

    02/21/2017, 7:19 PM
    🙌 @usman_dapper @luhagel @pratama @walt welcome to our slack!
  • d

    drejohnson

    02/21/2017, 7:27 PM
    Would be cool if a UID/slug could be generated from another string field
    👍 1
    s
    n
    s
    • 4
    • 4
  • m

    martin

    02/21/2017, 8:12 PM
    Redirect error: https://www.graph.cool/docs/guides/react-apollo-auth0-lock
    ✅ 1
    n
    • 2
    • 1
  • m

    martin

    02/21/2017, 8:13 PM
    (linked from this page: https://blog.graph.cool/user-authentication-in-graphql-with-auth0-digits-4ce01788950#.73odcj2ph)
  • m

    m.b.iqbal

    02/22/2017, 7:33 AM
    Can we have a relation between the same model. Like a user follows other users and a user has followers? Do we need an intermediary table for this many to many relation like in relational model?
1...109110111...637Latest